我从互联网服务html代码收到:
String html = Service.getHtml();
在html中我有例如:
<div style="text"></div>
我想用替换&#39; style =&#34; text&#34;&#39;例如&#39; new =&#34; aaa&#34;&#39;:
String new = html.replace("style=\"test\"", "new=\"aaa\"");
但这不起作用。它可能没有找到反斜杠的文本。
答案 0 :(得分:0)
问题是new
是Java中的关键字 - 您不能将其用作变量名称! - 并且发布的代码将无法编译。