删除ascii文本格式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了删除ascii文本格式相关的知识,希望对你有一定的参考价值。
This is useful if you are loading html-text via XML and want to remove additional line-breaks, newlines, formfeeds and tabs. It just leaves the clean html.
public static function removeAsciiFormatting(str:String):String { if (str != null) { var pattern:RegExp = /( | |f| )*/gm; // remove tabs, newlines, formfeeds and returns return str.replace(pattern, ''); } else { return null; } }
以上是关于删除ascii文本格式的主要内容,如果未能解决你的问题,请参考以下文章
SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML