当前分类:python>>正文

Python编程中的正则表达式解析器

来源:互联网   更新时间:2023年8月13日  

Python 笔记

一、正则表达式的基础语法

import re

text = "hello, world!"
pattern = r"[a-z]+"
match = re.findall(pattern, text)
print(match) # ['hello', 'world']

二、正则表达式的高级用法

import re

text = "My email is john@example.com"
pattern = r"(\w+)@(\w+.\w+)"
match = re.search(pattern, text)
print(match.group(0)) # john@example.com
print(match.group(1)) # john
print(match.group(2)) # example.com

三、正则表达式的应用场景

四、总结

本文固定链接:https://6yhj.com/leku-p-5366.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: VScode