Java tutorial
//package com.java2s; public class Main { public static String QspStrToHtml(String str) { String result = ""; if (str != null && str.length() > 0) { str = str.replaceAll("\r", "<br>"); // str = str.replaceAll("(?i)</td>", " "); // str = str.replaceAll("(?i)</tr>", "<br>"); // result = Html.fromHtml(str, imgGetter, null); result = str; } return result; } }