ActionScript 3 删除ascii文本格式

Posted

tags:

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

public static function removeAsciiFormatting(str:String):String {
	if (str != null) {
		var pattern:RegExp = /(\t|\n|\f|\r)*/gm; // remove tabs, newlines, formfeeds and returns
		return str.replace(pattern, '');
	} else {
	        return null;
	}
}

以上是关于ActionScript 3 删除ascii文本格式的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 使用动态文本字段删除闪光按钮上的箭头

ActionScript 3 AS3从文本中删除HTML标记

从 Actionscript 中的文本中删除 OpenXML 空格

删除ascii文本格式

ActionScript 3 自动更改文本大小以适合文本字段

bash 文本处理以删除 ascii 并从结果中获取唯一行