这里很简单,但我对 Python 还很陌生。
我有一个这样的字符串:
this is page one of an article
<!--pagebreak page two --> this is page two
<!--pagebreak--> this is the third page
<!--pagebreak page four --> last page
// newlines added for readability
我需要使用这个正则表达式拆分字符串:<!--pagebreak(*.?)-->
- 想法是有时<!--pagebreak-->
评论有一个“标题”(我在我的模板中使用),有时他们没有。
我试过这个:
re.split("<!--pagebreak*.?-->", str)
它仅返回分页符中带有“标题”的项目(并且也没有正确拆分它们)。我在这里做错了什么?