技术文摘
Python 中九个正则表达式使用实例
2024-12-30 23:12:23 小编
Python 中九个正则表达式使用实例
正则表达式在 Python 中是处理文本的强大工具,它允许我们通过模式匹配来搜索、提取和操作文本。以下是九个常见的正则表达式使用实例。
实例一:验证电子邮件地址
import re
def validate_email(email):
pattern = r'^[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+$'
if re.match(pattern, email):
return True
else:
return False
print(validate_email('example@example.com'))
实例二:提取手机号码
import re
def extract_mobile_number(text):
pattern = r'\b1[3-9]\d{9}\b'
matches = re.findall(pattern, text)
return matches
print(extract_mobile_number('我的手机号是 13812345678,还有 15698765432'))
实例三:匹配日期格式
import re
def match_date(date):
pattern = r'\d{4}-\d{2}-\d{2}'
if re.match(pattern, date):
return True
else:
return False
print(match_date('2023-07-15'))
实例四:去除字符串中的空格
import re
def remove_spaces(text):
return re.sub(r'\s+', '', text)
print(remove_spaces(' Hello World '))
实例五:提取网址
import re
def extract_urls(text):
pattern = r'https?://[^\s]+'
matches = re.findall(pattern, text)
return matches
print(extract_urls('访问这个网站:https://www.example.com 还有另一个:http://example.org'))
实例六:替换特定字符
import re
def replace_special_chars(text):
return re.sub(r'[^\w\s]', '', text)
print(replace_special_chars('Hello, World!'))
实例七:分割字符串
import re
def split_string(text):
return re.split(r'\s+', text)
print(split_string('Hello World How Are You'))
实例八:查找重复单词
import re
def find_duplicated_words(text):
pattern = r'\b(\w+)\s+\1\b'
matches = re.findall(pattern, text)
return matches
print(find_duplicated_words('This is is a test test'))
实例九:提取整数
import re
def extract_integers(text):
pattern = r'\b\d+\b'
matches = re.findall(pattern, text)
return matches
print(extract_integers('There are 10 apples and 20 oranges'))
通过以上九个实例,我们可以看到正则表达式在 Python 中的广泛应用和强大功能。熟练掌握正则表达式将极大地提高我们处理文本的效率和灵活性。
TAGS: Python 编程 Python 正则表达式 编程实践 正则表达式用法
- Node.Js 一问一答,我们共同参与
- 如此酷的排序,为何鲜为人知?
- 实用编程模式之 Options 模式
- 为何不建议用“==”比较两个 Integer 数值
- 中台建设若无法复用,何谈成功?
- Java 从零起步手写基于 WebSocket 的 RPC 实现
- Python 网络爬虫中三种中文乱码处理方法盘点
- Python 多任务进程的实现
- 流计算引擎数据一致性的内在实质
- 做好高并发系统设计的三点总结
- 鸿蒙应用开发及 HCIA 认证模拟题每日一练(第 50 题)
- Git 管理 Mdk 工程的使用方法
- Python 多继承中的奇特现象:既是爸爸又是爷爷?
- Go 语言基础之变量:一篇文章全知晓
- 以下几个完整开源 Java 项目,助你大幅提升能力