删除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.
  1. public static function removeAsciiFormatting(str:String):String {
  2. if (str != null) {
  3. var pattern:RegExp = /( | |f| )*/gm; // remove tabs, newlines, formfeeds and returns
  4. return str.replace(pattern, '');
  5. } else {
  6. return null;
  7. }
  8. }

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

SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML

使用格式化将 ASCII 文本转换为 Unicode [关闭]

如何在JTextArea中设置文本格式

将 ASCII 格式的海面温度文本文件导入 R

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

删除扩展的 ASCII 字符。 Linux 脚本 (128-255)