Python RegEx
正则表达式模块
Python 有一个内置的包叫做 re
,它可以用来处理正则表达式。
导入 re
模块
import re
Python 中的正则表达式
导入 re
模块后,就可以开始使用正则表达式了。
示例
搜索字符串,看它是否以 "The" 开头,以 "Spain" 结尾。
import re
txt = "The rain in Spain"
x = re.search("^The.*Spain$", txt)
自己试试 »
Python 有一个内置的包叫做 re
,它可以用来处理正则表达式。
导入 re
模块
import re
导入 re
模块后,就可以开始使用正则表达式了。
搜索字符串,看它是否以 "The" 开头,以 "Spain" 结尾。
import re
txt = "The rain in Spain"
x = re.search("^The.*Spain$", txt)
自己试试 »
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]