u'abcde(date=\'2/xc2/xb2\',time=\'/case/test.png\')'
All I need is the contents inside the parenthesis.
|
If your problem is really just this simple, you don't need regex:
|
|||
|
|
|
re.search('\((.*?)\)',s).group(1)
you need to learn about the regular expression more. ;-) |
|||
|
|
|
||||
|
|
u"abcde(date='2/xc2/xb2',time='/case/test.png')"– kzh Feb 4 '11 at 3:01