ここでは単純なものですが、私は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)
改ページに「タイトル」のあるアイテムのみを返しました(また、それらを正しく分割しませんでした)。ここで何が間違っていますか?