Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python get substring between strings

import re

s = 'asdf=5;iwantthis123jasd'
result = re.search('asdf=5;(.*)123jasd', s)
print(result.group(1))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #substring #strings
ADD COMMENT
Topic
Name
6+3 =