我在文本文件中有一组电子邮件。我想从中提取身体。示例文档如下所示。
Email: 1
===============
MIME-Version: 1.0
Received: by 10.68.8.6 with HTTP; Sat, 7 Apr 2012 01:04:45 -0700 (PDT)
Date: Sat, 7 Apr 2012 13:34:45 +0530
Delivered-To: twistyprincess22@gmail.com
Message-ID: <CAGibXq7_Gjqmp=jOCu2X8+Xngb5QuoqqMQ_ZKbu9jHCoJnFYgA@mail.gmail.com>
Subject: hello
From: twisty princess <twistyprincess22@gmail.com>
To: twisty princess <twistyprincess22@gmail.com>
Content-Type: multipart/alternative; boundary=047d7b33d826e6762004bd1239b5
--047d7b33d826e6762004bd1239b5
Content-Type: text/plain; charset=ISO-8859-1
hey How are you doing?
--047d7b33d826e6762004bd1239b5
Content-Type: text/html; charset=ISO-8859-1
<br><br>hey How are you doing?<br>
--047d7b33d826e6762004bd1239b5--
所以从这篇文章中我只想“嘿,你好吗?”。我希望使用正则表达式和C#完成此操作。感谢
答案 0 :(得分:1)
使用正则表达式boundary=([^\s]+)
查找边界名称
var bname = _boundaryRegex.Match(text).Groups[1].Value;
然后使用bname
var textCapturer = new Regex(string.Format("--{0}(?<text>.*?)(?=--)",bname);
foreach(var match in textCapturer.Matches(text))
{
Console.WriteLine(match.Groups["text"]);
}
找到boundary
参数的值,然后尝试匹配-BOUNDARY行之间的文本。
虽然我不建议你使用正则表达式进行这种解析。