Python/gloss python regex

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python正则表达式

正则表达式模块

Python有一个称为的内置程序包 re ,可用于正则表达式。

导入 re 模块:

import re

Python中的RegEx

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

搜索字符串以查看它是否以“ The”开头并以“ Spain”结尾:

    import 
    re

txt = "The rain in Spain"
x = re.search("^The.*Spain$", txt)