您好我有我需要的格式(列)電子郵件CSV文件的電子郵件,他們在CSV如下如何提取從HTML鏈接
<a href=\mailto:[email protected]\">[email protected]</a>"
<a href=\mailto:[email protected]\">[email protected]</a>"
等等
所以我要刪除<a href=\mailto:[email protected]\"> </a>"
,只需使用[email protected]
我有以下
foreach (var clientI in clientImportList)
{
newClient = new DomainObjects.Client();
//Remove unwanted email text??
newClient.Email = clientI.Email
}
你必須使用第二個地址嗎?使用第一種方法會更容易,在您的示例中它們是相同的。 – EAnders
你是否對子串和正則表達式做過任何研究? –
獲取「>」符號的索引,然後得到之後出現的「<」符號的索引,執行SubString。 – LarsTech