Practical Python – Regular Expressions Masterclass

Practical Python – Regular Expressions Masterclass

English | MP4 | AVC 1280×720 | AAC 48KHz 2ch | 1.5 Hours | 168 MB

A useful tool for those who do web scraping, natural language processing, big data parsing, or regularly work with text!

Practical Python – Regular Expressions Masterclass is a Hands-On Course that teaches you everything you need to know about using regular expressions with Python for the purpose of matching patterns in text.

Welcome to the only course you’ll ever need to become a master of regular expressions.

This comprehensive, authoritative course will take you from zero to hero with Python through meticulously planned lectures and hands-on exercises!

That’s right! Hands-on exercises, the most effective way to learn any skill. There are dozens of exercises included with the course for you to practice and hone your burgeoning skill with regular expressions using Python.

On top of that, everything you need to become proficient at applying regular expressions is included with this course: comprehensive teaching, phenomenal instructor support, and necessary updates to course material. No longer will you need to scour the internet only to be met with tutorials of dubious quality and continuity. No longer will you need to browse or ask questions on programming forums such as stackoverflow desperately hoping to find answers to your queries. No longer will you have to search for new tutorials as a result of the obsolescence of those upon which you relied.

In this course, you will learn everything a Python programmer needs to know about regular expressions!

Wherever you want to go with Python, whether its a career in data science, a career as a web developer, or something more specialized like deep learning, regular expressions are likely to be a useful addition to your toolbox.

No matter what languages you end up using in your programming career: javascript, php, java, or anything else, you are likely to learn some regular expressions that you will find useful in this course.

Table of Contents

Introduction to Regular Expressions
1 What Are Regular Expressions and Why Are They Useful
2 Regular Expressions with the RE Module
3 Finding Multiple Occurrences of a Pattern Using findall

Regular Expression Groups
4 Grouping Regular Expressions Using
5 The Pipe Character
6 When .search is Used and the Regular Expression is Not Found

Repeated Regular Expressions
7 Matching 0 or 1 Groups Using
8 Matching 0 or More Groups Using
9 Matching 1 or More Groups Using
10 Escaping and
11 Pattern Matching Using number of reps
12 Pattern Matching Using minmax
13 Greedy and Non-Greedy Matching

More With findall
14 findall with 0 or 1 groups
15 findall with 2 or more groups

Regex Character Classes
16 Regex Character Classes
17 Making Your Own Character Classes Using
18 Negative Character Classes Using

and for Regex Pattern Matching
19 Using to match a regular expression at the beginning of a string
20 Using to match a regular expression at the end of a string
21 Using at the beginning and at the end of a regex pattern simultaneously

Regex With the . Character
22 Using the . Character By Itself
23 Using the . Character With minmax
24 Using . to find patterns in strings containing words of unknown length
25 Greedy and Non-Greedy Matching with . and .
26 Matching n with DOTALL
27 Using re.IGNORECASEre.I to do a case insensitive regular expression match

The sub Function
28 Finding and Replacing a Regular Expression using the sub function
29 Partial Find and Replace Using Sub

Verbose Mode
30 Using Verbose Mode