Regular Expressions in Python [With Examples]: How to Implement?
By Rohit Sharma
Updated on Nov 30, 2022 | 7 min read | 5.9k views
Share:
For working professionals
For fresh graduates
More
By Rohit Sharma
Updated on Nov 30, 2022 | 7 min read | 5.9k views
Share:
Table of Contents
While processing raw data from any source, extracting the right information is important so that meaningful insights can be obtained from the data. Sometimes it becomes difficult to take out the specific pattern from the data especially in the case of textual data.
The textual data consist of paragraphs of information collected via survey forms, scrapping websites, and other sources. The Channing of different string accessors with pandas functions or other custom functions can get the work done, but what if a more specific pattern needs to be obtained? Regular expressions do this job with ease.
A regular expression is a representation of a set of characters for strings. It presents a generalized formula for a particular pattern in the strings which helps in segregating the right information from the pool of data. The expression usually consists of symbols or characters that help in forming the rule but, at first glance, it may seem weird and difficult to grasp. These symbols have associated meanings that are described here.
Learn data science courses from the World’s top Universities. Earn Executive PG Programs, Advanced Certificate Programs, or Masters Programs to fast-track your career.
Meta-characters in RegEx
Our learners also read: Top Python Free Courses
Now that you are aware of the characters that make up a RegEx, let’s see how this works:
1. Email Filtering:
Suppose you want to filter out all the email ids from a long paragraph. The general format for an email is:
username@domain_name. <top_level_domain>
The username can be alphanumeric, and therefore, we can use \w to denote them but there is a possibility that the user creates an account as firstName.surname. To tackle this, we will escape the dot and create a set of characters. Next, domain_name should be only alphabetic and therefore, A-Za-z will denote that. The top-level domain is usually .com, .in, .org but depending on the use case, you can choose either the whole alphabet range or filter specific domains.
The regular expression of this will look like this:
^([a-zA-Z0-9_.]+)@([a-zA-Z0-9-]+)\.([a-zA-Z]{2,4})$
Here the start and end of the pattern are also declared as well the top-level domain can only contain 2-4 characters. The whole expression has 3 groups.
2. Dates Filtering:
The textual information you are extracting may contain the dates and no separate column is made available for you. The dates are an essential factor that helps in filtering data or time series analysis. A particular date takes the format of date/month/year, where date and month can interchange.
Also, months can be numeric as well as alphabets form and in alphabets either abbreviations or full names. It mainly depends on how many cases are present in our data and can only be achieved by hit and trial.
A simple RegEx that covers a variety of dates is shown below:
^(\d{1,2})[/-](\d{1,2})[/-](\d{2,4})$
This pattern captures the date format with a hyphen or forward slash. The date and month are confined to one or two-digit and year up to four0 digits. The respective entities are captured as groups that are optional in this case.
Also Read: Python Project Ideas and Topics
The regular expressions we just built are satisfying the respective criteria we assumed and now it’s time to implement them in Python code. Python has a built-in module called re module that implements the working of these expressions. Simply,
import re
pattern = ‘^(\d{1,2})[/-](\d{1,2})[/-](\d{2,4})$’
Remodule offers a wide range of functions and all of them have different use cases. Let’s look at some of the important functions:
string = ‘25-12-1999 random text here 25/12/1999’
print(re.findall(pattern, string))
It will return only the dates from the string in a list.
To perform this:
match = re.search(pattern, string)
match.group(1)
Group(0) returns the whole match and corresponding next numbers denote other groups.
Checkout: Python Developer Salary in India
upGrad’s Exclusive Data Science Webinar for you –
Watch our Webinar on The Future of Consumer Data in an Open Data Economy
Regular expressions are a powerful way to capture patterns in textual data. It may take a bit of extra effort to hold command of the various characters but it simplifies the process of data extraction in complex use cases.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Start Your Career in Data Science Today
Top Resources