return word between two characters python code example
Example 1: python get everything between two characters
import re as regex
s = 'asdf=5;iwantthis123jasd'
result = regex.match('asdf=5;(.*)123jasd', s)
print(result)
Example 2: python get text between two points
foo.split('.')