function removehtml(strhtml,strlen) dim objregexp,match,matches set objregexp=new regexp objregexp.ignorecase=true objregexp.global=true '取闭合的 objregexp.pattern=" '进行匹配 set matches=objregexp.execute(strhtml) ' 遍历匹配集合,并替换掉匹配的项目 for each match in matches ... 20210311