I have a regular expression that searches for a string that contains '.00.'
or '.11.'
as follows:
.*.(00|11)..*
What I would like to do is replace all occurrences that match the pattern with 'X00X'
or 'X11X'
. For example, the string '.00..0..11.'
would result in 'X00X.0.X11X'
.
I was looking into the Python re.sub method and am unsure of how to do this effectively. The returned match object only matches on the first occurrence and therefore doesn't work well. Any advice? Should I just be using a string replace for this task? Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…