我想动态搜索一些字符串包含不区分大小写,一些字符串包含特殊字符,如 (TM)、(R) 如何搜索这些字符串
with open(logfile) as inf:
for line in inf:
if re.search(string,line,re.IGNORECASE):
# print 'found line',line
我想添加 re.IGNORECASE,re.escape() 出现错误,如何解决