October 2013
Beginner
600 pages
15h 18m
English
What You’ll Learn in This Hour:
What regular expressions are
Defining regular expression patterns
How to use regular expressions in your scripts
One of the most common functions used in Python scripts is manipulation of string data. One of the things Python is known for is its ability to easily search and modify strings. One of the features in Python that provides support for string parsing is regular expressions. ...