The Python docs say:

re.MULTILINE: When specified, the pattern character '^' matches at the beginning of the string and at the beginning of each line (immediately following each newline)... By default, '^' matches only at the beginning of the string...

So what's going on when I get the following unexpected result?

>>> import re
>>> s = """// The quick brown fox.
... // Jumped over the lazy dog."""
>>> re.sub('^//', '', s, re.MULTILINE)
' The quick brown fox.\n// Jumped over the lazy dog.'
link|improve this question

feedback

3 Answers

up vote 25 down vote accepted

Look at the definition of re.sub:

sub(pattern, repl, string[, count])

The 4th argument is the count, you are using re.MULTILINE (which is 8) as the count, not as a flag.

You have to compile your regex if you wish to use flags.

re.sub(re.compile('^//', re.MULTILINE), '', s)

A flags argument was added in Python 2.7, so the full definition is now:

re.sub(pattern, repl, string[, count, flags])

Which means that:

re.sub('^//', '', s, flags=re.MULTILINE)

works.

link|improve this answer
5  
it would be better to have re.compile('^//', re.M).sub('', s) – SilentGhost Mar 25 '10 at 16:32
you don't have to compile it if you tell python the flag that you are passing it – pseudosudo Aug 30 '11 at 18:34
2  
@pseudosudo the flags arguments was added in Python 2.7, which didn't exist when this answer was posted. I've added the information to the answer. – agf Aug 30 '11 at 18:43
feedback
re.sub('(?m)^//', '', s)
link|improve this answer
feedback

The full definition of re.sub is:

re.sub(pattern, repl, string[, count, flags])

Which means that if you tell Python what the parameters are, then you can pass flags without passing count:

re.sub('^//', '', s, flags=re.MULTILINE)

or, more concisely:

re.sub('^//', '', s, flags=re.M)
link|improve this answer
See my comment and edit to the other answer. – agf Aug 30 '11 at 18:44
@agf Ah, I didn't think to look at the date. – pseudosudo Aug 30 '11 at 19:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.