Python get string between two strings

Code examples

5
0

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))
1
0

python read string between two substrings

import re

s = 's1Texts2'
result = re.search('s1(.*)s2', s)
print(result.group(1))
0
0

python get everything between two characters

import re as regex

s = 'asdf=5;iwantthis123jasd'
result = regex.match('asdf=5;(.*)123jasd', s)

print(result)

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................