简体   繁体   中英

Python using result of function for Regular Expression Substitution

I have a block of text, and for every regex match, I want to substitute that match with the return value from another function. The argument to this function is of course the matched text.

I have been having trouble trying to come up with a one pass solution to this problem. It feels like it should be pretty simple.

Right from the documentation :

>>> def dashrepl(matchobj):
...     if matchobj.group(0) == '-': return ' '
...     else: return '-'
>>> re.sub('-{1,2}', dashrepl, 'pro----gram-files')
'pro--gram files'

Python-agnostic: Match everything before and everything after your text to replace.

/^(.*?)(your regexp to match)(.*)$/

Then you have the next before and after the text you're going to replace. The rest is easy -- just insert the result of your function between the two strings.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM