How to check if a string is a substring of a string with simple regular expressions in Python

3 Answers

0 votes
import re

r = re.search("python", "java python c# php")

print(r)


'''
run:

<_sre.SRE_Match object; span=(5, 11), match='python'>

'''

 



answered Dec 25, 2017 by avibootz
0 votes
import re

if re.search("python", "java python c# php"):
    print("yes")
else:
    print("no")


'''
run:

yes

'''

 



answered Dec 25, 2017 by avibootz
0 votes
import re

v = re.search("python", "java python c# php")

print(v.group(0))


'''
run:

python

'''

 



answered Dec 25, 2017 by avibootz
...