【实操】 写一个正则表达式,使其能同时识别下面所有的字符串:'bat','bit', 'but', 'hat', 'hit', 'hut'用Python
时间: 2024-01-19 07:02:14 浏览: 63
来实现。
以下是Python代码:
import re
pattern = r'[bh][aiu]t'
strings = ['bat', 'bit', 'but', 'hat', 'hit', 'hut']
for s in strings:
if re.match(pattern, s):
print(s, '是匹配的')
else:
print(s, '不是匹配的')
阅读全文