python read string between two substrings
import re
s = 's1Texts2'
result = re.search('s1(.*)s2', s)
print(result.group(1))
python read string between two substrings
import re
s = 's1Texts2'
result = re.search('s1(.*)s2', s)
print(result.group(1))
get text between two strings python
# You can do this with Reg Exp
import re
s = 'asdf=5;iwantthis123jasd'
result = re.search('asdf=5;(.*)123jasd', s)
print(result.group(1))
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us