search
HomeBackend DevelopmentPython TutorialIntroduction to the re module and regular expressions in python (with code)

This article brings you an introduction to the re module and regular expressions in Python (with code). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Regular expression (English: Regular Expression, often abbreviated as regex, regexp or RE in code), also known as regular expression, regular expression, regular expression, regular expression, regular expression, is A concept in computer science. Regular expressions use a single string to describe and match a series of strings that match a certain syntax rule. In many text editors, regular expressions are often used to retrieve and replace text that matches a certain pattern.

Regular expression rules, single character matching

##.Match any character (except n)b.bbab,b2b[ ] Matches any character from the character set in [] i [abCde]mi am\d Matches any decimal digit, consistent with [0-9]w\dcschoolw3cschool\Dmatches non-numbers, that is, not numbersmou\Dhmouth\s Matches any space character, same as [\n\t\r\v\f]i\slikei like \S Matches any non-whitespace character, as opposed to \sn\Senoe,n3e\w Matches any alphanumeric character, same as [A-Za-z0-9_][A-Za-z]w ##\W means the quantity matches
Character Function Regular expression example Match matching example

Matches non-word characters [0-9]\W[A-Z] 3 A

characters ##* Matches the previous regular expression 0 or more times, optionala*aaa Matches the previous character once or infinitely, that is, at least once a aaa? Matches the previous character appearing 1 or 0 times, either once or not a?a or b Matches the previous character m times Match the previous character appearing at least m timesmatches the previous one Characters appear from m to n times a{2,6}aaa
function regular expression example matching example



##{m}
[0-9]{5 } 12345
{m.}
a{5.} aaaaa ##{m,n}

Represents boundary matching

Characters

FunctionRegular expression example^Match the beginning part of the string^Dear$Match the ending part of the stringfi$bMatch any word boundary\bThe\bBMatch non-word boundaries.*\Bver\##Match groups
Character

Functionmatches either left or right The expression ##(ab) treats the characters in brackets as a group\numReference the string matched by group num(?P< ;name>)Group alias(?P=name)The reference alias is name Group matched stringsCommon functions and methods of re module
##\




re module In python, you can use the built-in re module Regular expression

Core function

Description

compile(pattern,flags=0) Compiles the regular expression pattern using any optional flags, then returns a regular expression object
##sub(pattern,repl,string,count=0) Use repl to replace all occurrences of the regular expression pattern in the string. Unless count is defined, all occurrences will be replaced.
re module functions and regular expression object methods Description
match(pattern, string,flags=0) Attempts to match a string using a regular expression pattern with optional flags. If the match is successful, return the matching object; if it fails, return None
search(pattern,string,flags=0) Search for string using optional flags The first occurrence of the regular expression pattern in . If the match is successful, the matching object is returned; if it fails, None is returned.
findall(pattern,string,[,flags]) Find all occurrences in the string regular expression and returns a list
split(pattern,string,max=0) According to the pattern separator of the regular expression, the split function separates the characters Split the string into a list, and then return a list of successful matches. The split operation can be max times (the default is to split all successfully matched positions)
Commonly used matching object methodsDescription##group(num=0)groups(default=None)span()
Default returns the entire matching object or returns a specific subgroup numbered num
Returns a tuple containing all matching subgroups, If there is no successful match, an empty tuple is returned

Commonly used module attributes, most of which are used to modify regular expression functionsre .Ire.S##re.MMulti-line matching, affecting ^ and $re.UParses characters according to the Unicode character set. Affects \w, \W, \b and \Bre.X This flag makes it easier to write regular expressions by giving you more flexible formatting Understand the general usage of re module
Explanation
Make the match case-insensitive (ignore case)
.(dot) matches anything except n All characters except, re.S mark indicates. (dot) can match all characters

Use the
    compile()
  1. function to convert the regular expression The string form is compiled into a regular expression object;

    matches the text through a series of methods provided by the regular expression object (such as:
  2. match()
  3. ) Search and obtain the matching result, a

    Match object;

    Finally use the properties and methods provided by the
  4. Match
  5. object (for example:

    group ()) Obtain information and perform other operations as needed.

    re module usage example

Import module

import re
compile()

Function compile function is used to compile regular expressions and generate a Pattern object. Its general usage form is as follows:

import re

# 将正则表达式编译成pattern对象
pattern = re.compile(r'\d+')
After compiling into a regular expression object, you can use the regular expression mentioned above expression object method.

match()

Method The match method is used to find the head of the string (you can also specify the starting position), it is once Matching, as long as a matching result is found, it is returned instead of searching for all matching results. Its general usage form is as follows:

match(string[, pos[, endpos]])
Among them, string is the string to be matched, pos and endpos are optional parameters, specifying the start and

endpoint# of the string. ## position, the default values ​​are 0 and len (string length) respectively. Therefore, when you do not specify pos and endpos, the match method defaults to matching the head of the string. When the match is successful, a Match object is returned. If there is no match, None is returned. <pre class="brush:php;toolbar:false">&gt;&gt;&gt; import re &gt;&gt;&gt;  &gt;&gt;&gt; pattern = re.compile(r'\d+') # 正则表达式表示匹配至少一个数字 &gt;&gt;&gt;  &gt;&gt;&gt; m = pattern.match(&quot;one2three4&quot;) # match默认从开头开始匹配,开头是字母o,所以没有匹配成功 &gt;&gt;&gt; print(m) # 匹配失败返回None None &gt;&gt;&gt;  &gt;&gt;&gt; m = pattern.match(&quot;1two3four&quot;) # 开头字符是数字,匹配成功 &gt;&gt;&gt; print(m) &lt;_sre.sre_match&gt; &gt;&gt;&gt;  &gt;&gt;&gt; m.group() # group()方法获取匹配成功的字符 '1' &gt;&gt;&gt; m = pattern.match(&quot;onetwo3four56&quot;,6,12) # 指定match从数字3开始查找,第一个是数字3,匹配成功 &gt;&gt;&gt; print(m) &lt;_sre.sre_match&gt; &gt;&gt;&gt; m.group() '3'&lt;/_sre.sre_match&gt;&lt;/_sre.sre_match&gt;</pre>

The above is the detailed content of Introduction to the re module and regular expressions in python (with code). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
Python calculates office hours: CSV data processing and time difference calculationPython calculates office hours: CSV data processing and time difference calculationAug 26, 2025 pm 04:45 PM

This article aims to provide a Python script for reading data from a CSV file and calculating the office hours corresponding to each ID within a specific month (such as February). The script does not rely on the Pandas library, but uses the csv and datetime modules for data processing and time calculation. The article will explain the code logic in detail and provide considerations to help readers understand and apply the method.

Solve the problem of SSL certificate verification failure during PyTerrier initializationSolve the problem of SSL certificate verification failure during PyTerrier initializationAug 26, 2025 pm 04:42 PM

When initializing using PyTerrier, users may encounter a ssl.SSLCertVerificationError error, prompting certificate verification failed. This is usually caused by the system's inability to obtain or verify the local issuer certificate. This article will explain the causes of this problem in detail and provide a way to quickly resolve the problem by temporarily disabling SSL certificate verification, while highlighting its potential security risks and applicable scenarios.

Python list numerical cropping: a practical guide to limiting the range of numerical valuesPython list numerical cropping: a practical guide to limiting the range of numerical valuesAug 26, 2025 pm 04:36 PM

This article describes how to use Python to crop a value in a list so that it falls within a specified upper and lower limit range. We will explore two implementation methods: one is an intuitive method based on loops, and the other is a concise method that uses min and max functions. Help readers understand and master numerical cropping techniques with code examples and detailed explanations, and avoid common mistakes.

Solve the problem that LabelEncoder cannot recognize previously 'seen' tagsSolve the problem that LabelEncoder cannot recognize previously 'seen' tagsAug 26, 2025 pm 04:33 PM

This article aims to resolve the "y contains previously unseen labels" error encountered when encoding data using LabelEncoder. This error usually occurs when there are different category tags in the training set and the test set (or validation set). This article will explain the causes of the error in detail and provide the correct encoding method to ensure that the model can handle all categories correctly.

Professional tutorial on Pandas DataFrame sorting and inserting stringsProfessional tutorial on Pandas DataFrame sorting and inserting stringsAug 26, 2025 pm 04:27 PM

This tutorial aims to solve the problem of sorting numeric columns in Pandas DataFrame and inserting rows containing strings on top of the sorted DataFrame. We will explain how to create a DataFrame with mixed data types, sort it, and then insert new lines containing strings, and provide complete code examples and detailed step instructions to help readers master the skills to deal with similar problems in Pandas.

Pandas Tutorial: Efficiently calculate the accumulated sum of DataFrame columns and create new columnsPandas Tutorial: Efficiently calculate the accumulated sum of DataFrame columns and create new columnsAug 26, 2025 pm 04:24 PM

This tutorial explains in detail how to efficiently calculate the accumulated sum of a column in a Pandas DataFrame and add its results to the DataFrame as a new column. We will use Pandas' built-in cumsum() method to demonstrate how to implement row-level continuous summing operations through concise Python code examples, thereby simplifying the data processing process and improving data analysis efficiency.

Efficient update of JSON data: Adding batch parameters and file I/O optimization practices in Discord robotsEfficient update of JSON data: Adding batch parameters and file I/O optimization practices in Discord robotsAug 26, 2025 pm 04:21 PM

This article explains in detail how to efficiently add new parameters to existing JSON data (such as user inventory) in Discord robot applications. By optimizing file reading and writing strategies, inefficient in-loop file operations are avoided, and data is modified and persisted in one-time in memory is realized, which significantly improves update efficiency and system performance, ensuring the accuracy and reliability of data updates.

Implementing F-bounded polymorphism in Python type prompts: the precise application of typing.SelfImplementing F-bounded polymorphism in Python type prompts: the precise application of typing.SelfAug 26, 2025 pm 04:18 PM

This article discusses the method to implement F-bounded polymorphism in Python type prompts, that is, how to make the base class method return the type of its specific subclass. In view of the limitations encountered by traditional TypeVar when referencing its own subclasses, the article details the typing.Self type, showing how it gracefully solves this problem, ensures the accurate delivery of type information, and provides two implementation examples based on instance methods and class methods.

See all articles

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Hot Topics