标签: regex
我尝试获得以下行的标题:
1. Title\nThis is the text line
结果应为
<span>1. Title</span>This is the text line
我的问题是将字符串拆分为\n。
\n
#^\d+\.((?:\d+(\.)*)*)\h+.\n(?:.)+$#s
https://regex101.com/r/tD9bP6/1
答案 0 :(得分:1)
您可以尝试下面的正则表达式。
^(\d+\.(?:\d+\.*)*\h+.*?)(?:\\n|$)
(?:\\n|$)可帮助您匹配反斜杠n或最后一行。
(?:\\n|$)
n
DEMO