Mission 346 Working With Strings in Pandas Takeaways
Mission 346 Working With Strings in Pandas Takeaways
Takeaways
by Dataquest Labs, Inc. - All rights reserved © 2021
Syntax
REGULAR EXPRESSIONS
• This expression would match years and name the capturing group "Years".
Concepts
• Pandas has built in a number of vectorized methods that perform the same operations for strings
in Series as Python string methods.
• A regular expression is a sequence of characters that describes a search pattern. In pandas,
regular expressions is integrated with vectorized string methods to make finding and extracting
patterns of characters easier.
Resources
• Working with Text Data
• Regular Expressions