我想在c#中使用正則表達式從電子郵件中提取一些信息。使用正則表達式從郵件中提取信息
這裏是從電子郵件中的一小段:
...with mapi id 14.02.0387.000; Thu, 6 Feb 2014 09:09:33 +0100
From: site <[email protected]>
To: "[email protected]" <[email protected]>
Subject: can this bounce
Thread-Topic: can this bounce
Thread-Index: Ac8jEr8t3k2RouQ1RaGPCXGFcE5oNg==Date:...
我想提取「從」的<>
之間的地址,「收件人」 <>
和主題(在本例之間的地址,主題是「can this bounce」)
我對正則表達式並不是很熟悉,所以我會很感激任何幫助。
(順便說一句和,如果有一個更簡單更巧妙的解決辦法我會很高興地聽到!)使用LINQ
http://hpop.sourceforge.net/ – nhahtdh