实际上在我的AndroidApp中,我试图做一些必须容易但该死的事情,这不是我所期待的。 我正在尝试通过执行
将字符串中的所有'td'替换为' space 'String = String2.replace('</td>',' ');
但它告诉我字符文字中有太多字符。
答案 0 :(得分:0)
这应该让你开始:
String cat = "the cat ran across the street.";
String replace = cat.replace("cat", "dog");
System.out.println(replace);
String td = "the cat </td> across the street.";
String replacetd = td.replace("</td>", "didnt make it");
System.out.println(replacetd);