我想使用正则表达式搜索字符串列表中不存在的字符串。是否可以使用否定前瞻为而不是制作正则表达式?
答案 0 :(得分:2)
只需在值列表中使用正则表达式"",如果匹配则返回False
。
答案 1 :(得分:1)
当您在字符串列表中搜索纯字符串时,您甚至不需要正则表达式。你可以做string not in list_of_strings
例如,如果你有
list_of_string = ['string1', 'string2', 'string3']
string = 'string4'
string not in list_of_strings
会产生True