我有以下文字:
text='apples and oranges apples and grapes apples and lemons'
我想使用正则表达式来实现如下所示:
“苹果和橘子”
“苹果和柠檬”
我试过这个re.findall('apples and (oranges|lemons)',text)
,但它不起作用。
更新:如果 'oranges' 和 'lemons' 是一个列表 : new_list=['oranges','lemons']
,我怎么能去 (?:'oranges'|'lemons') 而不再次输入它们?
有任何想法吗?谢谢。