ActionScript 3 剥离HTML标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 剥离HTML标记相关的知识,希望对你有一定的参考价值。

function stripTags(string:String):String
{
    var s:String = string;
    var regexp:RegExp = new RegExp("<[^<]*<", "gi");
    return s.replace(regexp, "");
}

以上是关于ActionScript 3 剥离HTML标记的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 从RSS中剥离HTML标记

将 ActionScript 2 SWF 转换为 ActionScript 3 SWF 文件(可以剥离代码)

ActionScript 3 剥离字体标签

ActionScript 3 剥离XML命名空间

ActionScript 3 AS3从字符串中剥离空格

ActionScript 3 剥离http://或https://从字符串中,可选择删除www。