给定一个字符串,如:
</gd:organization><gd:email rel='http://schemas.google.com/g/2005#other' address='CM@Aart.com'/><gd:email rel='http://schemas.google.com/g/2005#other' address='da@ammeart.com' primary='true'/><gd:phoneNumber rel='http://schemas.google.com/g/2005#work'>011 360 51 60</gd:phoneNumber>
我需要从字符串中删除:
<gd:email rel='http://schemas.google.com/g/2005#other' address='CM@Aart.com'/>
- 基于匹配:CM@Aart.com
。
它必须在基本的 JavaScript 中完成,我无法导入任何特殊的解析工具。我似乎找不到不会出错的组合。
谢谢!