Search code examples
pythonregexpython-3.x

Regular expression to return text between parenthesis


u'abcde(date=\'2/xc2/xb2\',time=\'/case/test.png\')'

All I need is the contents inside the parenthesis.


Solution

  • If your problem is really just this simple, you don't need regex:

    s[s.find("(")+1:s.find(")")]