2020 年 4 月 10 日更新
使用re.search(pattern, string) 检查是否存在模式。
pattern = "1"
string = "abc"
if re.search(pattern, string) is None:
print('do this because nothing was found')
返回:
do this because nothing was found
如果您希望遍历返回,请将re.finditer() 放在re.search() 中。
pattern = '[A-Za-z]'
string = "abc"
if re.search(pattern, string) is not None:
for thing in re.finditer(pattern, string):
print('Found this thing: ' + thing[0])
返回:
Found this thing: a
Found this thing: b
Found this thing: c
因此,如果您需要这两个选项,请使用带有 if re.search() 条件的 else: 子句。
pattern = "1"
string = "abc"
if re.search(pattern, string) is not None:
for thing in re.finditer(pattern, string):
print('Found this thing: ' + thing[0])
else:
print('do this because nothing was found')
返回:
do this because nothing was found
下面之前的回复(不够,看上面)
如果 .finditer() 与模式不匹配,则不会在相关循环中执行任何命令。
所以:
- 设置变量在循环之前用于迭代正则表达式返回
-
在您用于迭代正则表达式返回的循环之后(和之外)调用变量
这样,如果 regex 调用没有返回任何内容,则循环不会执行,并且循环之后的变量调用将返回与它设置的完全相同的变量。
下面,示例 1 演示了查找模式的正则表达式。示例 2 显示正则表达式未找到模式,因此循环内的变量永远不会设置。
示例 3 显示了我的建议 - 在正则表达式循环之前设置变量的位置,因此如果正则表达式未找到匹配项(并且随后不会触发循环),循环后的变量调用返回初始变量集(确认未找到正则表达式模式)。
记得导入 import re 模块。
示例 1(在字符串 'hello world' 中搜索字符 'he' 将返回 'he')
my_string = 'hello world'
pat = '(he)'
regex = re.finditer(pat,my_string)
for a in regex:
b = str(a.groups()[0])
print(b)
# returns 'he'
示例 2(在字符串 'hello world' 中搜索字符 'ab' 不匹配任何内容,因此 'for a in regex:' 循环不会执行并且不会为 b 变量分配任何值。)
my_string = 'hello world'
pat = '(ab)'
regex = re.finditer(pat,my_string)
for a in regex:
b = str(a.groups()[0])
print(b)
# no return
示例 3(再次搜索字符 'ab',但这次在循环之前将变量 b 设置为 'CAKE',并在之后调用变量 b,在循环外返回初始变量 - 即 'CAKE' - 因为循环没有执行)。
my_string = 'hello world'
pat = '(ab)'
regex = re.finditer(pat,my_string)
b = 'CAKE' # sets the variable prior to the for loop
for a in regex:
b = str(a.groups()[0])
print(b) # calls the variable after (and outside) the loop
# returns 'CAKE'
还值得注意的是,在设计您的模式以输入正则表达式时,请确保使用括号来指示组的开始和结束。
pattern = '(ab)' # use this
pattern = 'ab' # avoid using this
回到最初的问题:
由于没有找到不会执行 for 循环(正则表达式中的 for a),用户可以预加载变量,然后在 for 循环之后检查原始加载值。这将允许用户知道是否没有找到任何东西。
my_string = 'hello world'
pat = '(ab)'
regex = re.finditer(pat,my_string)
b = 'CAKE' # sets the variable prior to the for loop
for a in regex:
b = str(a.groups()[0])
if b == ‘CAKE’:
# action taken if nothing is returned