我在文本文件中有一个名为“Micro(R) Windows explorer”的字符串 如何搜索不区分大小写和 (R) 也匹配使用正则表达式代码是
with open(logfile) as inf:
for line in inf:
if re.search(string,line,re.IGNORECASE):
print 'found line',line
但是这个字符串“Micro(R) Windows explorer”不接受给出错误。