Ejemplo 1: encontrar todas las coincidencias de expresiones regulares con Python
matches = re.findall(r"xxx|yyy", a_string)
Ejemplo 2: python .findall
## Search for pattern 'bb' in string 'aabbcc'.
## All of the pattern must match, but it may appear anywhere.
## On success, match.group() is matched text.
match = re.search(r'bb', 'aabbcc') # found, match.group() == "bb"
match = re.search(r'cd', 'aabbcc') # not found, match == None
## . = any char but n
match = re.search(r'...c', 'aabbcc') # found, match.group() == "abbc"
## d = digit char, w = word char
match = re.search(r'ddd', 'p123g') # found, match.group() == "123"
match = re.search(r'www', '@@abcd!!') # found, match.group() == "abc"
Ejemplo 3: Python encuentra múltiples coincidencias en una cadena
a_string = "A string is more than its parts!"
matches = ["more", "wholesome", "milk"]
if any(x in a_string for x in matches):
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)