library re python code example
Example 1: re python3
import re
>>> m = re.search('(?<=abc)def', 'abcdef')
>>> m.group(0)
'def'
Example 2: python re
m = re.search(r'[cbm]at', 'aat')
print(m)
import re
>>> m = re.search('(?<=abc)def', 'abcdef')
>>> m.group(0)
'def'
m = re.search(r'[cbm]at', 'aat')
print(m)