“python regex obtenez un mot après la chaîne” Réponses codées

python regex obtenez une chaîne avant le caractère

You don't need regex for this

>>> s = "Username: How are you today?"
You can use the split method to split the string on the ':' character

>>> s.split(':')
['Username', ' How are you today?']
Tinky Winky

python regex obtenez un mot après la chaîne

regexp = re.compile("name(.*)$")
print regexp.search(s).group(1)
# prints " is ryan, and i am new to python and would like to learn more"
Hanna Solo

Réponses similaires à “python regex obtenez un mot après la chaîne”

Questions similaires à “python regex obtenez un mot après la chaîne”

Plus de réponses similaires à “python regex obtenez un mot après la chaîne” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code