正则表达式:在第一个空行后匹配所有内容

时间:2016-09-12 23:00:44

标签: c# regex

我正在尝试创建一个匹配所有内容的正则表达式,但不包括c#中的第一个空行。

示例:

输入:

This is header info
that I dont'  : really want
in my file

I want everything below this line
until the end of the file

even this stuff

会导致:

I want everything below this line
until the end of the file

even this stuff

1 个答案:

答案 0 :(得分:1)

您可以在正则表达式中使用单行和多行标记,如下所示:

^$.*

<强> Working demo

enter image description here

顺便说一句,如果行中有多个空格,那么你可以使用:

^\s*$(.*)

然后抓取捕获组中的内容