Regular Expressions in Python
Maria Eugenia Inzaugarat
Data Scientist
REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
st
)REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
\d
, \s
, \w
) or ideas ({3,10}
)REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
\d
, \s
, \w
) or ideas ({3,10}
)REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
\d
, \s
, \w
) or ideas ({3,10}
)REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
\d
, \s
, \w
) or ideas ({3,10}
)REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
REGular EXpression or regex:
String containing a combination of normal characters and special metacharacters that describes patterns to find text or positions within a text
Pattern matching usage:
Very powerful and fast
import re
re.findall(r"#movies", "Love #movies! I had fun yesterday going to the #movies")
['#movies', '#movies']
import re
re.split(r"!", "Nice Place to eat! I'll come back! Excellent meat!")
['Nice Place to eat', " I'll come back", ' Excellent meat', '']
import re
re.sub(r"yellow", "nice", "I have a yellow car and a yellow house in a yellow neighborhood")
'I have a nice car and a nice house in a nice neighborhood'
re.findall(r"User\d", "The winners are: User9, UserN, User8")
['User9', 'User8']
re.findall(r"User\D", "The winners are: User9, UserN, User8")
['UserN']
re.findall(r"User\w", "The winners are: User9, UserN, User8")
['User9', 'UserN', 'User8']
re.findall(r"\W\d", "This skirt is on sale, only $5 today!")
['$5']
re.findall(r"Data\sScience", "I enjoy learning Data Science")
['Data Science']
re.sub(r"ice\Scream", "ice cream", "I really like ice-cream")
'I really like ice cream'
Regular Expressions in Python