find string between two characters in python code example
Example: python get everything between two characters
import re as regex
s = 'asdf=5;iwantthis123jasd'
result = regex.match('asdf=5;(.*)123jasd', s)
print(result)
import re as regex
s = 'asdf=5;iwantthis123jasd'
result = regex.match('asdf=5;(.*)123jasd', s)
print(result)