“La chaîne Python contient” Réponses codées

La chaîne Python contient une sous-chaîne

fullstring = "StackAbuse"
substring = "tack"

if fullstring.find(substring) != -1:
    print "Found!"
else:
    print "Not found!"
riffrazor

Python Str contient un mot

fullstring = "StackAbuse"
substring = "tack"

if substring in fullstring:
    print "Found!"
else:
    print "Not found!"
Comfortable Cottonmouth

La chaîne Python contient

>>> str = "Messi is the best soccer player"
>>> "soccer" in str
True
>>> "football" in str
False
Misty Macaw

Si la substrat n'est pas en chaîne python

>>> string = "Hello World"
>>> # Check Sub-String in String
>>> "World" in string
True
>>> # Check Sub-String not in String
>>> "World" not in string
False
peamdev

Comment vérifier une sous-chaîne dans Python

def find_string(string,sub_string):
	return string.find(sub_string)
#.find() also accounts for multiple occurence of the substring in the given string
san_bt

Python si la chaîne contient de l'omble

myString = "<text contains this>"
myOtherString = "AnotherString"

# Casting to string is not needed but it's good practice
# to check for errors 

if str(myString) in str(myOtherString): 
    # Do Something
else:
	# myOtherString didn't contain myString
    
Av3

Réponses similaires à “La chaîne Python contient”

Questions similaires à “La chaîne Python contient”

Plus de réponses similaires à “La chaîne Python contient” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code