listA = ['Leonardo_da_Vinci', 'Napoleon', 'Cao_Cao', 'Elton_John']
listB = ['123_Leonardo_da_Vinci_abc.csv', '456_Cao_Cao_def.csv']
listC = ['Napoleon', 'Elton_John']
我想检查listB
中的项目是否包含listA
中的值,并返回listC
(即listB
中缺少的列表)。为此,我想使用regex(没有其他启发式),如(检查Leonardo_da_Vinci
的示例):.*Leonardo_da_Vinci.*
1条答案
按热度按时间lokaqttq1#
大概是这样的