使用 javascript,我需要解析text/html
电子邮件的 Content-Type 部分并仅提取 HTML 部分。以下是相关邮件源部分的示例:
------=_Part_1504541_510475628.1327512846983
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: 7bit
<html ... a bunch of html ...
/html>
我想<html>
在text/html
. 我该怎么做呢?
注意:我可以使用 hacky 正则表达式。我不希望这是防弹的。