正则表达式:将字符串拆分为\ n

时间:2015-03-21 19:04:00

标签: regex

我尝试获得以下行的标题:

1. Title\nThis is the text line

结果应为

<span>1. Title</span>This is the text line

我的问题是将字符串拆分为\n

#^\d+\.((?:\d+(\.)*)*)\h+.\n(?:.)+$#s

https://regex101.com/r/tD9bP6/1

1 个答案:

答案 0 :(得分:1)

您可以尝试下面的正则表达式。

^(\d+\.(?:\d+\.*)*\h+.*?)(?:\\n|$)
最后

(?:\\n|$)可帮助您匹配反斜杠n或最后一行。

DEMO