regex - split string with equal sign at any location using python -


i split string equal sign @ location.

[in] example string abc=xyz example string

can please tell me how print string after equals sign ("="). instance, in above case, output should be

[out] abc=xyz

i got clue how split if ('=') if in last word not in anywhere inside string.

findall find occurances, (i assumed requirement)

import re = "[in] example string abc=xyz example string" print(re.findall("\w+=\w+",a)) 

op

['abc=xyz']


Comments