Here is a pattern object that I tried to make in python using the re module. What I am going for is something that will take the string "(\exists x)(Px*Qx)" and find just the "Px*Qx" portion. I thought that I would try to use the lookahead and lookbehind assertions. I'm not sure if I am using this wrong or if there is something wrong with the ( character.
p = re.compile(r'?<=[(]\w+?=[)]')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/re.py", line 190, in compile
return _compile(pattern, flags)
File "/usr/lib/python2.7/re.py", line 244, in _compile
raise error, v # invalid expression
sre_constants.error: nothing to repeat
[^()]+, to get things that aren’t parens? – tchrist Aug 31 '12 at 2:03((1))) just because of how regex works ...... but tchrist's suggestion ('\([^()]*\)')should work fine for non nested parens – Joran Beasley Aug 31 '12 at 2:05(\exists x)(Px*Qx)? Do you want to ensure something like(\word word)(TARGET)or just want to obtain the string inside second parantheses? – mmdemirbas Aug 31 '12 at 9:20