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. |
||
|
|
