Python的RegEx正则表达式怎么使用

regex 或正则表达式是形成搜索模式的字符序列。

RegEx 可用于检查字符串是否包含指定的搜索模式。

RegEx 模块

Python 提供名为 re 的内置包,可用于处理正则表达式。

导入 re 模块:

import re

登录后复制

Python 中的 RegEx

导入 re 模块后,就可以开始使用正则表达式了:

立即学习“Python免费学习笔记(深入)”;

实例

检索字符串以查看它是否以 “China” 开头并以 “country” 结尾:

import retxt = "China is a great country"x = re.search("^China.*country$", txt)

登录后复制

运行实例

import retxt = "China is a great country"x = re.search("^China.*country$", txt)if (x):  print("YES! We have a match!")else:  print("No match")

登录后复制

Python的RegEx正则表达式怎么使用

RegEx 函数

re 模块提供了一组函数,允许我们检索字符串以进行匹配:

Python的RegEx正则表达式怎么使用

元字符

元字符是具有特殊含义的字符

字符:[] 描述:一组字符 示例:“[a-m]”

import restr = "The rain in Spain"#Find all lower case characters alphabetically between "a" and "m":x = re.findall("[a-m]", str)print(x)

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符: 描述:示意特殊序列(也可用于转义特殊字符) 示例:“d”

import restr = "That will be 59 dollars"#Find all digit characters:x = re.findall("d", str)print(x)

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:. 描述:任何字符(换行符除外) 示例: “he…o”

import restr = "hello world"#Search for a sequence that starts with "he", followed by two (any) characters, and an "o":x = re.findall("he..o", str)print(x)

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:^ 描述:起始于 示例: “^hello”

import restr = "hello world"#Check if the string starts with 'hello':x = re.findall("^hello", str)if (x):  print("Yes, the string starts with 'hello'")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:$ 描述:结束于 示例:“world$”

import restr = "hello world"#Check if the string ends with 'world':x = re.findall("world$", str)if (x):  print("Yes, the string ends with 'world'")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:* 描述:零次或多次出现 示例:“aix*”

import restr = "The rain in Spain falls mainly in the plain!"#Check if the string contains "ai" followed by 0 or more "x" characters:x = re.findall("aix*", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:+ 描述:一次或多次出现 示例: “aix+”

import restr = "The rain in Spain falls mainly in the plain!"#Check if the string contains "ai" followed by 1 or more "x" characters:x = re.findall("aix+", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:{} 描述: 确切地指定的出现次数 示例:“al{2}”

import restr = "The rain in Spain falls mainly in the plain!"#Check if the string contains "a" followed by exactly two "l" characters:x = re.findall("al{2}", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:| 描述:两者任一 示例:“falls|stays”

import restr = "The rain in Spain falls mainly in the plain!"#Check if the string contains either "falls" or "stays":x = re.findall("falls|stays", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:() 描述:捕获和分组

特殊序列

特殊序列指的是 后跟下表中的某个字符,拥有特殊含义。

字符:A 描述:如果指定的字符位于字符串的开头,则返回匹配项 示例:“AThe”

import restr = "The rain in Spain"#Check if the string starts with "The":x = re.findall("AThe", str)print(x)if (x):  print("Yes, there is a match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:

描述:返回指定字符位于单词的开头或末尾的匹配项

示例:r”ain”

import restr = "The rain in Spain"#Check if "ain" is present at the beginning of a WORD:x = re.findall(r"ain", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

示例:r”ain”

import restr = "The rain in Spain"#Check if "ain" is present at the end of a WORD:x = re.findall(r"ain", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:B

描述:返回指定字符存在的匹配项,但不在单词的开头(或结尾处)

示例:r”Bain”

import restr = "The rain in Spain"#Check if "ain" is present, but NOT at the beginning of a word:x = re.findall(r"Bain", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

示例:r”ainB”

import restr = "The rain in Spain"#Check if "ain" is present, but NOT at the end of a word:x = re.findall(r"ainB", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:d

描述:返回字符串包含数字的匹配项(数字 0-9)

示例:“d”

import restr = "The rain in Spain"#Check if the string contains any digits (numbers from 0-9):x = re.findall("d", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:D

描述:返回字符串不包含数字的匹配项

示例:“D”

import restr = "The rain in Spain"#Return a match at every no-digit character:x = re.findall("D", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:s

描述:返回字符串包含空白字符的匹配项

示例:“s”

import restr = "The rain in Spain"#Return a match at every white-space character:x = re.findall("s", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:S

描述:返回字符串不包含空白字符的匹配项

示例:“S”

import restr = "The rain in Spain"#Return a match at every NON white-space character:x = re.findall("S", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:w

描述: 返回一个匹配项,其中字符串包含任何单词字符 (从 a 到 Z 的字符,从 0 到 9 的数字和下划线 _ 字符)

示例:“w”

import restr = "The rain in Spain"#Return a match at every word character (characters from a to Z, digits from 0-9, and the underscore _ character):x = re.findall("w", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:W

描述:返回一个匹配项,其中字符串不包含任何单词字符

示例:“W”

import restr = "The rain in Spain"#Return a match at every NON word character (characters NOT between a and Z. Like "!", "?" white-space etc.):x = re.findall("W", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:Z

描述:如果指定的字符位于字符串的末尾,则返回匹配项 。

示例:“SpainZ”

import restr = "The rain in Spain"#Check if the string ends with "Spain":x = re.findall("SpainZ", str)print(x)if (x):  print("Yes, there is a match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

集合(Set)

集合(Set)是一对方括号 [] 内的一组字符,具有特殊含义。

字符:[arn]

描述:返回一个匹配项,其中存在指定字符(a,r 或 n)之一

示例

import restr = "The rain in Spain"#Check if the string has any a, r, or n characters:x = re.findall("[arn]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[a-n]

描述:返回字母顺序 a 和 n 之间的任意小写字符匹配项

示例

import restr = "The rain in Spain"#Check if the string has any characters between a and n:x = re.findall("[a-n]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[^arn]

描述:返回除 a、r 和 n 之外的任意字符的匹配项

示例

import restr = "The rain in Spain"#Check if the string has other characters than a, r, or n:x = re.findall("[^arn]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[0123]

描述:返回存在任何指定数字(0、1、2 或 3)的匹配项

示例

import restr = "The rain in Spain"#Check if the string has any 0, 1, 2, or 3 digits:x = re.findall("[0123]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[0-9]

描述:返回 0 与 9 之间任意数字的匹配

示例

import restr = "8 times before 11:45 AM"#Check if the string has any digits:x = re.findall("[0-9]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[0-5][0-9]

描述:返回介于 0 到 9 之间的任何数字的匹配项

示例

import restr = "8 times before 11:45 AM"#Check if the string has any two-digit numbers, from 00 to 59:x = re.findall("[0-5][0-9]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[a-zA-Z]

描述:返回字母顺序 a 和 z 之间的任何字符的匹配,小写或大写

示例

import restr = "8 times before 11:45 AM"#Check if the string has any characters from a to z lower case, and A to Z upper case:x = re.findall("[a-zA-Z]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

字符:[+]

描述:在集合中,+、*、.、|、()、$、{} 没有特殊含义,因此 [+] 表示:返回字符串中任何 + 字符的匹配项。

示例

import restr = "8 times before 11:45 AM"#Check if the string has any + characters:x = re.findall("[+]", str)print(x)if (x):  print("Yes, there is at least one match!")else:  print("No match")

登录后复制

运行示例

Python的RegEx正则表达式怎么使用

findall() 函数

findall() 函数返回包含所有匹配项的列表。

实例

打印所有匹配的列表

import restr = "China is a great country"x = re.findall("a", str)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

这个列表以被找到的顺序包含匹配项。

如果未找到匹配项,则返回空列表。

实例

如果未找到匹配,则返回空列表:

import restr = "China is a great country"x = re.findall("USA", str)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

search() 函数

search() 函数搜索字符串中的匹配项,如果存在匹配则返回 Match 对象。

如果有多个匹配,则仅返回首个匹配项。

实例

在字符串中搜索第一个空白字符

import restr = "China is a great country"x = re.search("s", str)print("The first white-space character is located in position:", x.start())

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

如果未找到匹配,则返回值 None:

实例

进行不返回匹配的检索

import restr = "China is a great country"x = re.search("USA", str)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

split() 函数

split() 函数返回一个列表,其中字符串在每次匹配时被拆分。

实例

在每个空白字符处进行拆分

import restr = "China is a great country"x = re.split("s", str)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

可以通过指定 maxsplit 参数来控制出现次数:

实例

仅在首次出现时拆分字符串:

import restr = "China is a great country"x = re.split("s", str, 1)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

sub() 函数

sub() 函数把匹配替换为您选择的文本

实例

用数字 9 替换每个空白字符

import restr = "China is a great country"x = re.sub("s", "9", str)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

可以通过指定 count 参数来控制替换次数:

实例

替换前两次出现

import restr = "China is a great country"x = re.sub("s", "9", str, 2)print(x)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

Match 对象

Match 对象是包含有关搜索和结果信息的对象。

注释:如果没有匹配,则返回值 None,而不是 Match 对象。

实例

执行会返回 Match 对象的搜索:

import restr = "China is a great country"x = re.search("a", str)print(x) # 将打印一个对象

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

Match 对象提供了用于取回有关搜索及结果信息的属性和方法:

span() 返回的元组包含了匹配的开始和结束位置

.string 返回传入函数的字符串

group() 返回匹配的字符串部分

实例

打印首个匹配出现的位置(开始和结束位置)。

正则表达式查找以大写 “C” 开头的任何单词:

import restr = "China is a great country"x = re.search(r"Cw+", str)print(x.span())

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

实例

打印传入函数的字符串

import restr = "China is a great country"x = re.search(r"Cw+", str)print(x.string)

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

实例

打印匹配的字符串部分

正则表达式查找以大写 “C” 开头的任何单词:

import restr = "China is a great country"x = re.search(r"Cw+", str)print(x.group())

登录后复制

运行实例

Python的RegEx正则表达式怎么使用

注释:如果没有匹配项,则返回值 None,而不是 Match 对象。

以上就是Python的RegEx正则表达式怎么使用的详细内容,更多请关注【创想鸟】其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。

发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2234937.html

(0)
上一篇 2025年2月26日 17:47:43
下一篇 2025年2月26日 17:48:30

AD推荐 黄金广告位招租... 更多推荐

相关推荐

  • python正则表达教程2024

    正则表达式是一种在文本中匹配模式的代码,使用元字符和量词定义匹配模式。Python 中使用 re 模块处理正则表达式:1. 导入 re 模块;2. 定义正则表达式模式;3. 调用 re.search() 查找匹配项。正则表达式语法包括元字符…

    2025年3月30日
    100
  • java中字符串怎么转数组

    在 Java 中,将字符串转换为数组的方法有:使用 split() 方法根据模式分隔字符串;使用 toCharArray() 方法获取单个字符的字符数组;使用 replaceAll() 和 StringJoiner 替换空格并连接非空格字符…

    2025年3月30日
    100
  • java怎么由字符串构造数组

    在 Java 中,可以通过以下六种方法将字符串构造为数组:使用 String.split() 方法拆分字符串使用正则表达式拆分字符串使用字符数组和 Arrays.copyOfRange() 方法使用流将字符串拆分为字符流使用 Apache …

    2025年3月30日
    100
  • java怎么将字符串给数组

    Java中将字符串转换为数组的方法有5种:使用toCharArray()方法、正则表达式、split()方法、Arrays.copyOf()方法和Stream API。具体选择取决于具体需求,不同方法有各自的优点和缺点。 如何在 Java …

    2025年3月30日
    100
  • notepad++版本介绍

    Notepad++ 是一款开源文本编辑器,自 2003 年起不断更新。目前最新版本是 10.0.0,具有语法高亮、多视图编辑、宏录制、正则表达式搜索、Markdown 预览、语法检查和代码重构等广泛功能。 Notepad++ 版本介绍 No…

    2025年3月30日
    100
  • notepad++的作用是什么

    Notepad++ 是一款免费的文本编辑器,主要用于编程、网页开发和数据分析等文本处理任务。其作用包括:语法高亮,识别不同语言代码结构和错误;代码自动完成,提高编码效率和准确性;支持自定义宏和插件,满足特定需求;多文档界面,实现多任务处理;…

    2025年3月30日
    100
  • 使用正则表达式匹配合法的 IPv4 地址的操作方法

    使用正则表达式匹配合法 IPv4 地址的方法:使用正则表达式 ^(([0-9]|1-9|1[0-9]{2}|20-4|25[0-5]).){3}([0-9]|1-9|1[0-9]{2}|20-4|25[0-5])$,匹配四段数字,每段 0-…

    2025年3月30日
    100
  • vscode是干嘛的 vscode的作用

    VS Code:不仅是代码编辑器,更是编程伙伴VS Code 是一款功能强大的集成开发环境(IDE),提供丰富的扩展和工具,显著提升编码效率:高度可扩展性:拥有庞大的扩展市场,覆盖几乎所有编程语言、框架和工具。核心功能:强大的内置调试器,支…

    2025年3月30日
    100
  • 如何将复杂的LaTeX公式转换成Python或JavaScript代码进行数值计算?

    LaTeX公式到编程语言代码转换:挑战与解决方案 将LaTeX数学公式转换为Python或JavaScript等编程语言代码以进行数值计算,并非易事。LaTeX注重公式的排版美观,而编程语言则强调代码的执行逻辑。两者表达方式的差异,导致直接…

    2025年3月30日
    100
  • vscode使用deepseek

    VS Code 与 DeepSeek:高效代码搜索利器 vs code 已经成为许多开发者的首选代码编辑器,其强大的扩展生态系统更是锦上添花。deepseek 正是其中一款值得关注的扩展,它极大地提升了代码搜索的效率和准确性。 本文将深入探…

    编程技术 2025年3月30日
    100

发表回复

登录后才能评论