ActionScript 3 剥离字体标签

Posted

tags:

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

//strip Font Tags

function stripFont(string:String):String
{
	var s:String = string;
	var regexp:RegExp = /<\/?font[^>]*>/gi;
	return s.replace(regexp,"");
}

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

ActionScript 3 剥离HTML标记

ActionScript 3 剥离HTML标记

ActionScript 3 剥离XML命名空间

ActionScript 3 从RSS中剥离HTML标记

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

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