find = re.compile("^(.*)\..*")
for l in lines:
m = re.match(find, l)
print m.group(1)
我想对字符串中的任何内容进行正则表达式,直到第一个点。
a@b.c
我要进去我要a@b
进去
我要a@b.c.d
a@b
a@b.c.d.e
a@b
我的代码给了我什么...
a@b.c
印刷a@b
a@b.c.d
印刷a@b.c
a@b.c.d.e
印刷a@b.c.d
应该找到什么以便它只得到 a@b?