当括号内的文本跨越多行时,以下按模式的出现拆分字符串的函数不起作用:
import re
def header(text):
authors = [i.strip() for i in re.split(r'\\and|\\thanks\{.*?\}', text, flags=re.M)]
names = filter(None,authors)
return '{} and {}'.format(', '.join(names[:-1]), names[-1])
print header(r"""John Bar \and Tom Foo\thanks{Testing if this works with
multiple lines} \and Sam Baz""")
我不知道正则表达式是错误还是我在split
函数中使用了错误的标记。