每當(dāng)任務(wù)(對(duì)于patternStart.finditer(TestString) 中的匹配)未找到匹配項(xiàng)時(shí),我都會(huì)嘗試打?。ㄎ凑业狡ヅ漤?xiàng))。我一直堅(jiān)持這個(gè)沒有任何成功。任何意見,將不勝感激。字符串“jeke”故意不包含數(shù)字,因此找不到匹配項(xiàng)。TestString = 'jeke'patternStart = re.compile(r'\d')cnt = 0 # Initialize the counterwanted1 = [1] # Defines the 1-based IDs of the matches you want to displaywanted2 = [2] # Defines the 1-based IDs of the matches you want to displayfor match in patternStart.finditer(TestString): cnt += 1 if cnt in wanted1: out = match.group() else: print('match was not found')我已經(jīng)嘗試過了。if match.group() is None: print('match was not found')if out is None: print('match was not found')
1 回答

鳳凰求蠱
TA貢獻(xiàn)1825條經(jīng)驗(yàn) 獲得超4個(gè)贊
您可以使用cnt來確定是否找到任何匹配項(xiàng):
for match in patternStart.finditer(TestString):
cnt += 1
if cnt in wanted1:
out = match.group()
if cnt == 0:
print('match was not found')
或者使用單獨(dú)的found_match變量:
found_match = False
for match in patternStart.finditer(TestString):
found_match = True
cnt += 1
if cnt in wanted1:
out = match.group()
if not found_match:
print('match was not found')
添加回答
舉報(bào)
0/150
提交
取消