在处理 1.5.1 中使用此代码时,我不断收到“格式错误的字符常量”错误。我想用字符串中的不间断空格替换所有空格。任何帮助,将不胜感激。
String newStr;
String S = "Hello there world"
char c = '\u00A0';
newStr = S.replace(' ', c);
在处理 1.5.1 中使用此代码时,我不断收到“格式错误的字符常量”错误。我想用字符串中的不间断空格替换所有空格。任何帮助,将不胜感激。
String newStr;
String S = "Hello there world"
char c = '\u00A0';
newStr = S.replace(' ', c);