I have a Perl regular expression (shown here, though understanding the whole thing isn't hopefully necessary to answering this question) that contains the \G metacharacter. I'd like to translate it into Python, but Python doesn't appear to support \G. What can I do?
|
Try these:
for example:
|
||||
|
|
|
You can use
This will only match pattern from the given position, and any matches that follow 0 characters after.
|
||||
|
|
|
Python does not have the /g modifier for their regexen, and so do not have the \G regex token. A pity, really. |
|||
|
|
|
Don't try to put everything into one expression as it become very hard to read, translate (as you see for yourself) and maintain.
Python is not usually best when you literally translate from Perl, it has it's own programming patterns. |
|||
|
|
|
I know I'm little late, but here's an alternative to the
output (via Ideone):
The idea is to use a regex that matches both kinds of string: a URL or a commented line. Then you use a callback (delegate, closure, embedded code, etc.) to find out which one you matched and return the appropriate replacement string. As a matter of fact, this is my preferred approach even in flavors that do support (I'm not a Python guy, so forgive me if the code is terribly un-pythonic.) |
|||
|
|