在 Python 中检查字符串是否与 Regex 匹配

Preet Sanghavi 2023年1月30日 2022年5月17日
  1. 在 Python 中导入正则表达式库
  2. 在 Python 中编译正则表达式模式
  3. 在 Python 中将输入字符串与正则表达式模式匹配
在 Python 中检查字符串是否与 Regex 匹配

在本教程中,我们将学习如何检查字符串是否与 Python 中的正则表达式匹配。

在 Python 中导入正则表达式库

import re

让我们使用一个示例字符串。

string = 'C1N200J1'

我们将使用这个字符串来匹配我们的模式。我们现在将使用 re.compile() 函数来编译正则表达式模式。

在 Python 中编译正则表达式模式

pattern = re.compile("^([A-Z][0-9]+)+$")

我们已经将所需的模式保存在 pattern 变量中,我们将使用它来匹配任何新的输入字符串。

在 Python 中将输入字符串与正则表达式模式匹配

我们现在将使用 match() 函数来搜索正则表达式方法并返回第一个匹配项。

print(pattern.match(string))

如果找到模式,上面的代码将返回匹配对象,如果模式不匹配,则返回 None。对于我们的输入字符串,我们得到以下输出。

<re.Match object; span=(0, 8), match='C1N200J1'>

上面的输出显示我们的输入字符串匹配范围从 0 到 8 的正则表达式模式。现在让我们取一个与我们的正则表达式模式不匹配的新字符串。

new_string = 'cC1N2J1'

我们现在将重复上述匹配过程并查看我们的新字符串的输出。

print(pattern.match(new_string))

我们在运行上述代码时得到以下输出。

None

上面的输出表明我们的输入字符串与所需的正则表达式模式不匹配。

因此,我们可以通过上述方法确定我们的字符串是否与正则表达式模式匹配。

Preet Sanghavi avatar Preet Sanghavi avatar

Preet writes his thoughts about programming in a simplified manner to help others learn better. With thorough research, his articles offer descriptive and easy to understand solutions.

LinkedIn GitHub

相关文章 - Python String

相关文章 - Python Regex