


Introduction 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
Character | Function | Regular expression example | Match matching example |
---|---|---|---|
Match any character (except n) | b.b | bab,b2b | |
Matches any character from the character set in [] | i [abCde]m | i am | |
Matches any decimal digit, consistent with [0-9] | w\dcschool | w3cschool | |
matches non-numbers, that is, not numbers | mou\Dh | mouth | |
Matches any space character, same as [\n\t\r\v\f] | i\slike | i like | |
Matches any non-whitespace character, as opposed to \s | n\Se | noe,n3e | |
Matches any alphanumeric character, same as [A-Za-z0-9_] | [A-Za-z]w | ||
Matches non-word characters | [0-9]\W[A-Z] | 3 A |
function | regular expression example | matching example | ||
---|---|---|---|---|
a* | aaa | |||
a | aaa | |||
a? | a or b |
##{m} |
||
[0-9]{5 } | 12345 |
{m.} |
||
a{5.} | aaaaa | ##{m,n} | matches the previous one Characters appear from m to n times ||
aaa |
Represents boundary matching |
Characters
^ | ||
---|---|---|
$ | Match the ending part of the string | |
b | Match any word boundary | |
B | Match non-word boundaries | |
##Match groups |
##\ | matches either left or right The expression ||
---|---|---|
##(ab) | treats the characters in brackets as a group | |
\num | Reference the string matched by group num | |
(?P< ;name>) | Group alias | |
(?P=name) | The reference alias is name Group matched strings | |
re module | In python, you can use the built-in re module Regular expression | Common functions and methods of re module
compile(pattern,flags=0) | Compiles the regular expression pattern using any optional flags, then returns a regular expression object |
---|
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) |
Use repl to replace all occurrences of the regular expression pattern in the string. Unless count is defined, all occurrences will be replaced. |
Description | |
---|---|
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 | |
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 | ##re.M |
re.U | |
re.X | |
- compile()
- 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: match() - ) Search and obtain the matching result, a
Match
Finally use the properties and methods provided by theobject;
Match - object (for example:
group ()
re module usage example) Obtain information and perform other operations as needed.
Import module
import recompile()
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.
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">>>> import re
>>>
>>> pattern = re.compile(r'\d+') # 正则表达式表示匹配至少一个数字
>>>
>>> m = pattern.match("one2three4") # match默认从开头开始匹配,开头是字母o,所以没有匹配成功
>>> print(m) # 匹配失败返回None
None
>>>
>>> m = pattern.match("1two3four") # 开头字符是数字,匹配成功
>>> print(m)
<_sre.sre_match>
>>>
>>> m.group() # group()方法获取匹配成功的字符
'1'
>>> m = pattern.match("onetwo3four56",6,12) # 指定match从数字3开始查找,第一个是数字3,匹配成功
>>> print(m)
<_sre.sre_match>
>>> m.group()
'3'</_sre.sre_match></_sre.sre_match></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!

Python is easier to learn and use, while C is more powerful but complex. 1. Python syntax is concise and suitable for beginners. Dynamic typing and automatic memory management make it easy to use, but may cause runtime errors. 2.C provides low-level control and advanced features, suitable for high-performance applications, but has a high learning threshold and requires manual memory and type safety management.

Python and C have significant differences in memory management and control. 1. Python uses automatic memory management, based on reference counting and garbage collection, simplifying the work of programmers. 2.C requires manual management of memory, providing more control but increasing complexity and error risk. Which language to choose should be based on project requirements and team technology stack.

Python's applications in scientific computing include data analysis, machine learning, numerical simulation and visualization. 1.Numpy provides efficient multi-dimensional arrays and mathematical functions. 2. SciPy extends Numpy functionality and provides optimization and linear algebra tools. 3. Pandas is used for data processing and analysis. 4.Matplotlib is used to generate various graphs and visual results.

Whether to choose Python or C depends on project requirements: 1) Python is suitable for rapid development, data science, and scripting because of its concise syntax and rich libraries; 2) C is suitable for scenarios that require high performance and underlying control, such as system programming and game development, because of its compilation and manual memory management.

Python is widely used in data science and machine learning, mainly relying on its simplicity and a powerful library ecosystem. 1) Pandas is used for data processing and analysis, 2) Numpy provides efficient numerical calculations, and 3) Scikit-learn is used for machine learning model construction and optimization, these libraries make Python an ideal tool for data science and machine learning.

Is it enough to learn Python for two hours a day? It depends on your goals and learning methods. 1) Develop a clear learning plan, 2) Select appropriate learning resources and methods, 3) Practice and review and consolidate hands-on practice and review and consolidate, and you can gradually master the basic knowledge and advanced functions of Python during this period.

Key applications of Python in web development include the use of Django and Flask frameworks, API development, data analysis and visualization, machine learning and AI, and performance optimization. 1. Django and Flask framework: Django is suitable for rapid development of complex applications, and Flask is suitable for small or highly customized projects. 2. API development: Use Flask or DjangoRESTFramework to build RESTfulAPI. 3. Data analysis and visualization: Use Python to process data and display it through the web interface. 4. Machine Learning and AI: Python is used to build intelligent web applications. 5. Performance optimization: optimized through asynchronous programming, caching and code

Python is better than C in development efficiency, but C is higher in execution performance. 1. Python's concise syntax and rich libraries improve development efficiency. 2.C's compilation-type characteristics and hardware control improve execution performance. When making a choice, you need to weigh the development speed and execution efficiency based on project needs.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)