0

我的文本区域中有这些标签

<gras>.....</gras>

我正在尝试使用replaceAll() String 方法替换它们

text.replaceAll("<gras>", "<b>");

text.replaceAll("</gras>", "</b>");

但是,这个正则表达式代码不起作用。请问有什么帮助吗?

4

2 回答 2

5

You forgot a very important concept;

. Change text.replaceAll("<gras>", "Bold!");

To

text = text.replaceAll("<gras>", "Bold!");

Assign text = some Function, as text.replace() is creating a new String object and not referencing it.

Hope this helps.

于 2013-08-30T15:53:52.233 回答
2

字符串不会替换。字符串用替换值构造新的字符串。

此外,如果您正在处理 XML,那么正则表达式是错误的工具。这并不意味着它不能工作,它可能在一些有限的例子中有用,但它不应该是第一个使用的工具。就像锤子不应该是安装螺钉时使用的第一个工具。

于 2013-08-30T16:00:52.633 回答