标签: regex
我需要匹配WARNING: More than 1000 header fields; only using the first 1000 and ignoring the rest ,\n和\r,以便表达式可以在任何平台上使用。
WARNING: More than 1000 header fields; only using the first 1000 and ignoring the rest
\n
\r
我想出了这个表达式:
\r\n
但是如果我在linux(使用[\n\r]{1,2} )或Mac(使用\n)中,则它将匹配两个行分隔符(\r或\n\n)< / p>
[\n\r]{1,2}
\n\n
如何分别匹配每个行分隔符?