Home  >  Article  >  Backend Development  >  An introduction to regular expressions and their common matching functions in Python

An introduction to regular expressions and their common matching functions in Python

Go语言进阶学习
Go语言进阶学习forward
2023-07-25 17:17:081565browse

/Introduction/

Python has added the re module since version 1.5, which Provides Perl-style regular expression patterns. The re module enables the Python language to have all regular expression functions.

The compile function generates a regular expression object based on a pattern string and optional flag parameters. This object has a series of methods for regular expression matching and replacement.

The re module also provides functions that are identical to these methods. These functions take a pattern string as their first argument.


##/re.match function/

re.match attempts to match a pattern from the starting position of the string. If the matching is not successful at the starting position, match() will return none. The syntax is as follows:

re.match(pattern, string, flags=0)

"pattern" matches the regular expression "string" and the string "flags" flag to match.

If the match is successful, the re.match method returns a matching object, otherwise it returns None.

We can use group(num) or groups() matching object function to get the matching expression.

    group(num=0) 匹配的整个表达式的字符串,“group()”可以一次输入多个组号,在这种情况下它将返回一个包含那些组所对应值的元组。

下图是个实际例子:

An introduction to regular expressions and their common matching functions in Python

输出结果如下图所示:

An introduction to regular expressions and their common matching functions in Python


/检索和替换/

    Python 的re模块提供了re.sub用于替换字符串中的匹配项。语法如下所示:

re.sub(pattern, repl, string, count=0, flags=0)

参数:

    pattern : 正则中的模式字符串。

    repl : 替换的字符串,也可为一个函数。

    string : 要被查找替换的原始字符串。

    count : 模式匹配后替换的最大次数,默认 0 表示替换所有的匹配。

    flags : 编译时用的匹配模式,数字形式。

前三个为必参数,后两个为可选参数。

下图是个实际例子:

An introduction to regular expressions and their common matching functions in Python

输出结果如下图所示:

An introduction to regular expressions and their common matching functions in Python


/compile函数/

    compile 函数用于编译正则表达式,供match() 和 search() 这两个函数使用。语法格式为:

re.compile(pattern[, flags])

参数:

    pattern : 一个字符串形式的正则表达式

    flags 可选,表示匹配模式,比如忽略大小写,多行模式等,具体参数为:

    re.I 忽略大小写

re.L represents the special character set \w,\W, \b, \B, \s, \S depends on the current environment

re.M More Line pattern

re.S is '.' and any character including newline ('.' does not include newline)

re.U represents the special character set \w,\W, \b, \B, \d, \D, \s, \S and relies on the Unicode character attribute database

re.X To increase readability, ignore spaces and comments after '#'

/regular expression object/

re.RegexObject: re.compile() returns the RegexObject object.

re.MatchObject: group() returns the string matched by RE.

start() Returns the position where the match starts

end() Returns the position where the match ends

          span() returns a tuple containing the position of the match (start, end)

/regular expression modifier - optional flag/

Regular expressions can contain some optional flag modifiers to control the matching patterns. The modifier is specified as an optional flag. Multiple flags can be specified by bitwise OR(|) them. For example, re.I| re.M is set to I and M flags:

##re.I

Make the match case-insensitive

re.L

Do localization recognition (locale-aware) matching

re.M

Multiple line matching, affecting ^ and $

re.S

# #Make

. match all characters including newlines

re.U

Parses characters according to the

Unicode character set. This flag affects \w, \W, \b, \B.

re. Regular expressions are written to be easier to understand.


/regular expression pattern/

## The pattern string uses special syntax to represent a regular expression Expression:

Letters and numbers represent themselves. Letters and numbers in a regular expression pattern match the same string.

Most letters and numbers have different meanings when preceded by a backslash.

Punctuation marks match themselves only if they are escaped, otherwise they represent a special meaning.

The backslash itself needs to be escaped with a backslash.

Since regular expressions usually contain backslashes, you'd better use raw strings to represent them. Pattern elements (such as r'\t', equivalent to \\t) match the corresponding special characters.

The following table lists the special elements in the regular expression pattern syntax. If you use a pattern and provide optional flags arguments, the meaning of some pattern elements will change.

An introduction to regular expressions and their common matching functions in Python##Regular expression example

Character matching

Example

Description

python

Matches "python".

    字符类

An introduction to regular expressions and their common matching functions in Python

/实际应用/

    以猫眼电影为例。我们需要获取(电影的名字作者,上映时间)等等都可以用正则表达式来解析。

An introduction to regular expressions and their common matching functions in Python

    分析一下,利用正则表达式提取。An introduction to regular expressions and their common matching functions in Python

    可以看到我们要的名字在一个a里面,而他们被一个div包裹着。

    我们把div想象成一个盒子,可以看到div里面还有一个div 我们可以先找他上面一层的div是一个表单0d5affef54b5792b53e66baae815472b再找到它的上一层的盒子div7944fc67b6e5ce9f806e856ae5e703bc一般来说我们找到前两层就可以找到我们要的结果。如果不对就再找几层。

    分析完再实际操作一下:

pattern = re.compile(&#39;<div>.*?title="(.*?)".*?class="star">(.*?)</p>.*?releasetime">(.*?)</p>&#39;,re.S)

    (.*?)表示我们要的内容4dd738c46dabb06475883a3c3eaef79a(.*?)94b3e26ee717c64999d7867364b1b4a3里面的主演也是我们要的这样我们就可以得到我们想要得多个数据。


/小结/

1. Regular expressions are suitable for scenarios where multiple data needs to be obtained. It can get the data we want in a faster way.

## 2. This article mainly introduces regular expressions and their basic usage. For specific usage of each character, you can refer to the regular expression series articles in the preface. I hope it can help you learn more. Good understanding of the usage of regular expressions.

The above is the detailed content of An introduction to regular expressions and their common matching functions in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:Go语言进阶学习. If there is any infringement, please contact admin@php.cn delete