python - 在 python 中,如何 'if finditer(...) has no matches' ?

标签 python regex

当 finditer() 找不到任何东西时,我想做点什么。

import re
pattern = "1"
string = "abc"  
matched_iter = re.finditer(pattern, string)
# <if matched_iter is empty (no matched found>.
#   do something.
# else
    for m in matched_iter:
        print m.group()

我能想到的最好的办法是手动跟踪找到的内容:

mi_no_find = re.finditer(r'\w+',"$$%%%%")   # not matching.
found = False
for m in mi_no_find:
    print m.group()
    found = True
if not found:
    print "Nothing found"

不回答的相关帖子:

[编辑]
- 我对枚举或计算总产出没有兴趣。仅当找到否则未找到操作。
- 我知道我可以将 finditer 放入列表中,但这对于大字符串来说效率很低。一个目标是降低内存利用率。

最佳答案

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

因此,如果您需要这两个选项,请将 else: 子句与 if re.search() 条件一起使用。

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() 不匹配模式,那么它不会在相关循环中执行任何命令。

所以:

  • 在循环之前设置您用来迭代正则表达式返回值的变量
  • 在您用于迭代正则表达式返回的循环之后(以及之外)调用变量

这样,如果正则表达式调用没有返回任何内容,循环将不会执行,并且循环之后的变量调用将返回与它设置的完全相同的变量。

下面的示例 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 in regex),用户可以预加载变量,然后在 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

关于python - 在 python 中,如何 'if finditer(...) has no matches' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56050201/

相关文章:

python 3.5 类型提示 : can i check if function arguments match type hints?

Python 在 Windows 关闭时保存集到文件?

python - 我碰巧发现了这段代码 :"With for w in words:, 该示例将尝试创建一个无限列表

javascript - 正则表达式获取由 "="分隔的字段

Python - 从文本文件读取并放入列表

python - 如何访问 Django 模板中的用户配置文件?

regex - 正则表达式 => 匹配 Set 中的所有内容,除了一个字符

javascript 使用正则表达式分割字符串

regex - 无法在 Notepad++ 正则表达式搜索和替换中引用捕获组

regex - 在 mongodb 的子文档数组上一起使用 $slice 和 $regex