我正在尝试从 Python regexp 中删除 a ' 和 a ,
我想出了:
regex = re.compile("[^']*\.dbf[^,]*")
file_handle = open(file)
for line in file_handle:
m = regex.match(line)
if m:
print m.group()
这样我就会有以下匹配的字符串
/u01/app/data/ORCL/system01.dbf
代替
[blank spaces]'/u01/app/data/ORCL/system01.dbf',
提前致谢。