标签: java regex replaceall
我正在尝试使用relaceAll用" \\ s +"替换空格。但不是用所需的字符替换,而是将其视为空间, 这是我的代码:
String text = "hello world !".replaceAll("\\s+", "\\\\s+");
我的预期输出是:
hello\\s+world\\s+!