📅  最后修改于: 2023-12-03 15:26:52.295000             🧑  作者: Mango
正则表达式是一种用于匹配字符串的特殊语法。这里介绍的是如何使用正则表达式模式 t 查找单词的复数通行证。
re
模块。import re
pattern = r'\b\w+s\b'
其中,\b
表示单词边界,\w
表示任意字母数字下划线,+
表示匹配一个或多个,s\b
表示以 s 结尾的单词。
findall
函数找到所有匹配的单词。text = 'I have three tickets to the movies. My friends have two tickets.'
matches = re.findall(pattern, text)
print(matches)
输出结果为:
['tickets', 'movies', 'tickets']
sub
函数将匹配的单词变成复数形式。plural_matches = [word if word.endswith('s') else word+'s' for word in matches]
print(plural_matches)
输出结果为:
['ticketss', 'moviess', 'ticketss']
正则表达式模式 t 可以用来匹配单词的复数通行证。通过 findall
函数找到所有匹配的单词,然后使用 sub
函数将这些单词变成复数形式。