标签: regex
如何匹配模式(在我的情况下是新行字符),但不是在字符串的最开头时匹配。
所以我需要像/\n/这样的东西,但只匹配以下字符串\nthis is a line\nand the second one\nand the third one中的第二和第三个新行字符
/\n/
\nthis is a line\nand the second one\nand the third one