正则表达式快速入门二 :python re module 常用API介绍
python regex module re 使用
reference regex module in python
import re
re.search
re.search(regex, subject, regex_matching_mode): apply a regex pettern to a subject string(with a specified searching mode)
searching mode: re.I(re.IGNORECASE) , re.S(re.DOTALL), re.M(re.MULTLINE) 可以使用 | 来使用多种mode e.g. re.I | re.S 。 re.L(re.LOCALE) re.U(re.UNICODE): 主要用于修改\w 对应word_characters 的范围
return None if matching attempt fails and a Match object otherwise
因为None 与False 等价 所以可以被用在 if statement
其他类似的function(不支持 regex matching flags)
re.match(regex, subject): re.search 遍历整个字符串来进行匹配,而re.match 只在字符串的开头寻找匹配 re.match("regex", subject) is equal to re.search("\Aregex", subject)
re.fullmatch(regex, subject): 只有在 subject与regex完全匹配时,return Match object, otherwise None (which is equal to re.search("\Aregex\Z", subject))
re.findall(regex, subject: This will return an array of all non-overlapping regex matches in the string. 当 存在一个或者多个capturing groups时, return a array of tuple
re.finditer(regex, subject): return a iterator(more effcient than re.findall()) 返回一个由match object组成的迭代器
for m in re.finditer(regex, subject)
# ordinary character
# r"" raw string literal
subject = "Hello_world_hello"
regex_1 = r"Hello"
regex_2 = r"World"
if re.search(regex_1, subject, flags=re.I):
print('Match')
else:
print('Not a match')
if re.search(regex_2, subject, flags=re.I):
print('Match')
else:
print('Not a match')
if re.search(regex_1, subject):
print('Match')
else:
print('Not a match')
if re.search(regex_2, subject):
print('Match')
else:
print('Not a match')
Match
Match
Match
Not a match
Match Details(关于匹配的细节)
re.search 和 re.match return a Match object ; re.finditer 生成一个迭代器用于遍历 Match object
Match object(using m to signify it) 包含关于match 的许多有用的信息
m.group(): returns the part of the string matched by the entire regular expression,即返回被整个正则表达式所匹配的部分
m.start(): returns the offset in the string of the start of the match ,返回匹配位置的偏移量
m.end():returns the offset of the character beyond the match, 返回match之后character的偏移量
m.span() : tuple(m.start(), m.end())
可以使用 m.start() 与 m.end() 进行切片, subject[m.start(): m.end()]
如果想要指定capturing_group 匹配的结果, e.g. m.group(group_number) m.group(group_name)
如果想要做搜索替换 而不调用 re.sub() 那么可以使用 m.expand(replacement) 去计算替换的结果
注意
re.search search throughout the string until find a match
re.match attempts the pattern at the very start of the string until find a match
re.findall and re.finditer will find all the matches
# the match details
m = re.search(regex_1, subject, flags=re.I)
print(f'regex {regex_1}')
print(f'subject {subject}')
print(f"m.group: {m.group()}")
print(f"m.start: {m.start()}")
print(f"m.end: {m.end()}")
print(f"m.span: {m.span()}")
print(subject[m.start():m.end()])
regex Hello
subject Hello_world_hello
m.group: Hello
m.start: 0
m.end: 5
m.span: (0, 5)
Hello
# finditer
for m in re.finditer(r'(?i)' + regex_1, subject):
print(m.span())
print(subject[m.start(): m.end()])
(0, 5)
Hello
(12, 17)
hello
# findall
print(re.findall(r'(?i)' + regex_1, subject))
print(type( re.findall(r'(?i)' + regex_1, subject) ))
['Hello', 'hello']
<class 'list'>
Strings , Backslashes and Regular Expressions
regex 使用 反斜杠进行转义特殊字符, 而python字符串中也使用反斜杠进行转义字符。 因此\\ 在正则表达式中为一个literal backslash 对应的python字符串 为 \\\\ 不便于阅读
因此采用 python 的 raw string 特性 r"\\" 对于字符串去转义, 以简化 正则表达式的书写
regex_non_raw = '\\\\'
regex_raw = r'\\'
literal_backblash = r'\abc'
if re.search(regex_non_raw, literal_backblash):
print('Match')
else:
print('not a Match')
if re.search(regex_raw, literal_backblash):
print('Match')
else:
print('not a Match')
Match
Match
Unicode
关于 Unicode notation \uFFFF
为了避免关于反斜杠是否应该被转义的困惑, 我们应该使用 raw Unicode string ur"\uFFFF\d"(当然前缀u并不必要)
print(u'\uEFFFa')
a
Search and Replace
查找替换的实现
re.sub(regex, replacement, subject): replacing all matches of regex in subject with replacement。
return the result of modified(the subject is not modified)
如果regex有 capturing groups, 可以使用 \g \number 来指定替换的group
result = re.sub(regex_1, 'world', subject, flags= re.I)
result_with_constrained_times = re.sub(regex_1, 'world', subject, count=1)
print(f'replace all match : {result}')
print(f'replace match according to specified times : {result_with_constrained_times}')
replace all match : world_world_world
replace match according to specified times : world_world_hello
Splitting Strings
re.split(regex, subject, control_the_number_of_splits): 根据 regex matches 将字符串进行切分
return a array of string(the matches is not included in the result but the capturing_groups is included in the result)
target = re.split(regex_1, subject, flags=re.I)
target_with_contrained_times = re.split(regex_1, subject, maxsplit=1, flags=re.I)
print(f"split_result_without_limit: {target}")
print(f"split_result_with_limit: {target_with_contrained_times}")
split_result_without_limit: ['', '_world_', '']
split_result_with_limit: ['', '_world_hello']
Regex Objects
如果想要多次使用同一个正则表达式, 那么需要将其编译为一个 regular expression object
re.compile(regex) or re.compile(regex, flags): flags switch the matching mode
return regular expression object(regex_object)
regex_object 可以使用re库的所有函数
e.g.
re.compile.search(subject) == re.search(regex, subject)
re_object = re.compile(regex_1, flags=re.I)
print(re_object.findall(subject))
['Hello', 'hello']
总结
以上就是python正则表达式module re 的常用接口以及其与正则表达式之间的关系
以上内容中缺少 grouping_and_capturing 这一部分,并没有展示在存在capturing group时上述函数接口的表现,仅仅介绍了相关内容
进一步进阶使用时,主要体现在提升正则表达式的复杂度上,在这个notebook中只展示了 使用literal_text 进行匹配的结果
正则表达式快速入门二 :python re module 常用API介绍的更多相关文章
- 前端学习 node 快速入门 系列 —— 模块(module)
其他章节请看: 前端学习 node 快速入门 系列 模块(module) 模块的导入 核心模块 在 初步认识 node 这篇文章中,我们在读文件的例子中用到了 require('fs'),在写最简单的 ...
- python基础31[常用模块介绍]
python基础31[常用模块介绍] python除了关键字(keywords)和内置的类型和函数(builtins),更多的功能是通过libraries(即modules)来提供的. 常用的li ...
- IdentityServer4 中文文档 -9- (快速入门)使用客户端凭证保护API
IdentityServer4 中文文档 -9- (快速入门)使用客户端凭证保护API 原文:http://docs.identityserver.io/en/release/quickstarts/ ...
- Jupyter 快速入门——写python项目博客非常有用!!!
from:https://blog.csdn.net/m0_37338590/article/details/78862488 一.简介: Jupyter Notebook(此前被称为 IPython ...
- python3.5+django2.0快速入门(二)
昨天写了python3.5+django2.0快速入门(一)今天将讲解配置数据库,创建模型,还有admin的后台管理. 配置数据库 我们打开mysite/mysite/settings.py这个文件. ...
- C#正则表达式快速入门
作者将自己在学习正则表达式中的心得和笔记作了个总结性文章,希望对初学C#正则表达式的读者有帮助. [内容] 什么是正则表达式 涉及的基本的类 正则表达式基础知识 构建表达式基本方法 编写一个检验程序 ...
- 小D课堂 - 零基础入门SpringBoot2.X到实战_第1节零基础快速入门SpringBoot2.0_1、SpringBoot2.x课程介绍和高手系列知识点
1 ======================1.零基础快速入门SpringBoot2.0 5节课 =========================== 1.SpringBoot2.x课程全套介绍 ...
- 二、robotframework接口测试-常用关键字介绍
1.常用关键字介绍: a. 打印:log 用法:log 打印内容 ---------------- ...
- 小程序常用API介绍
小程序常用API接口 wx.request https网络请求 wx.request({ url: 'test.php', //仅为示例,并非真实的接口地址 method:"GET&qu ...
- pip快速下载安装python 模块module
g刚开始学习python时,每次想要安装某个module,都到处找module的安装包(exe.whl等) 装setuptools,然后在cmd里用easy_install装pip,然后用pip装你要 ...
随机推荐
- iOS中容易用错的常用知识点
坐标系转换 ios中的坐标系有三种 视图坐标系:原点(0,0)视图的左上角 窗口坐标系:原点(0,0)窗口的左上角 世界坐标系:原点(0,0)游戏中世界的原点 平时开发中经常会遇到转UIWindow坐 ...
- UART-UART非常见波特率调试应用笔记
UART非常见波特率调试 应用笔记 串口通信中的波特率选择,对于确保可靠的数据传输至关重要.波特率是衡量单位时间内传输的比特数,常见的波特率包括300.1200.2400.9600.115200等.不 ...
- 我们浏览 GitHub 时,经常看到 "WIP" 的分支,即 Work In Progress,正在开发过程中(尚不能独立的运行)的代码。这部分的代码在 Github/Gitlab 中将禁用“合......
本文分享自微信公众号 - 生信科技爱好者(bioitee).如有侵权,请联系 support@oschina.cn 删除.本文参与"OSC源创计划",欢迎正在阅读的你也加入,一起分 ...
- 在 VS Code 里逛知乎、发文章?Zhihu on VSCode 来啦!重新定义内容创作!
本文为 牛岱 的原创文章 在2020年2月10日首发于"玩转VS Code"知乎专栏 你是否已经厌倦了知乎 Web 端文本编辑器糟糕的使用体验和时而出现的奇怪 Bug? 身为程序员 ...
- Pytorch-如何在模型中引入可学习参数
错误实例: def init(self): self.w1 = torch.nn.Parameter(torch.FloatTensor(1),requires_grad=True).cuda() s ...
- JVM监控工具jstat使用介绍
jstat 是 Java 自带的一个命令行工具,用于监控 JVM 运行时的状态信息.它可以通过以下格式的命令来调用: jstat [option] <vmid> [<interval ...
- 有哪些ASIC加速技术可以实现低功耗运行?
目录 文章主题: 10. 有哪些ASIC加速技术可以实现低功耗运行? 背景介绍:随着移动设备.物联网.云计算等应用场景的不断增长,功耗成为了一个日益重要的技术问题.为了在移动设备上实现更长时间的运行, ...
- Java 文件写入不覆盖的写法
FileOutputStream o = null; File file = null; FileWriter fw = null; byte[] buff = new byte[]{}; try { ...
- 什么是ORM (object real mapping)
一.ORM简介 对象关系映射(Object Relational Mapping,简称ORM)模式是一种为了解决面向对象与关系数据库存在的互不匹配的现象的技术.简单的说,ORM是通过使用 ...
- Spring-Bean实例化三种的方式
Bean实例化三种方式 无参构造实例化(重点) 工厂静态方法实例化 工厂实例方法实例化 工厂静态方法实例化 1.编写接口 package com.my; public interface UserDa ...