我正在尝试使用一个应该匹配正则表达式的 python 脚本,由 much 产生的对象总是一个空字符串,所以我认为我在没有所需知识的情况下使用正则表达式。有人可以帮忙吗?下面是代码:
def storecheck(text, store):
res =""
for line in text.splitlines():
print str(store)
if re.search('/'+str(store)+',/g', line):
print re.search('/'+str(store)+',/g', line)+';'
res+= line
return res
'store' 在脚本中具有整数值。我在python的官方网站上阅读了re.match和re.search的手册,但是这个正则表达式应该是匹配的,只要在线测试器不都是错觉。所以有人看到我做错了什么吗?