vote up 1 vote down star

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?

flag

65% accept rate

4 Answers

vote up 2 vote down

Try these:

import re
re.sub()
re.findall()
re.finditer()

for example:

# Finds all words of length 3 or 4
s = "the quick brown fox jumped over the lazy dogs."
print re.findall(r'\b\w{3,4}\b', s)

# prints ['the','fox','over','the','lazy','dogs']
link|flag
vote up 0 vote down

You can use re.match to match anchored patterns. re.match will only match at the beginning (position 0) of the text, or where you specify.

def match_sequence(pattern,text,pos=0):
  p = re.compile(pattern)
  m = p.match(text,pos)
  while m:
    yield m
    if m.end() == pos:
      break # infinite loop otherwise
    pos = m.end()
    m = p.match(text,pos)

This will only match pattern from the given position, and any matches that follow 0 characters after.

>>> for m in match_sequence("[^\W\d]+|\d+","he11o world!"):
...   print m.group()
...
he
11
o
link|flag
vote up 0 vote down

Python does not have the /g modifier for their regexen, and so do not have the \G regex token. A pity, really.

link|flag
vote up 0 vote down

Don't try to put everything into one expression as it become very hard to read, translate (as you see for yourself) and maintain.

import re
lines = [re.sub(r'http://[^\s]+', r'<\g<0>>', line) for line in text_block.splitlines() if not line.startedwith('//')]
print '\n'.join(lines)

Python is not usually best when you literally translate from Perl, it has it's own programming patterns.

link|flag

Your Answer

Get an OpenID
or

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