Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 android/java 中,我试图用 a 替换某些字符串中的空格+,但它似乎不起作用。我做错了吗?
+
String string="Hello world"; string.replace(" ", "+");
String对象是不可变的,因此该replace方法不会更改字符串,而是创建一个您必须重新保存的新字符串:
String
replace
String string="Hello world"; string = string.replace(" ", "+");
在 Java 中,StringBuffer 类提供了一个可变字符串。replace 方法将返回相同的对象。