我需要替换一个包含空格和句点的字符串。我尝试过使用以下代码:
String customerName = "Mr. Raj Kumar";
customerName = customerName.replaceAll(" ", "");
System.out.println("customerName"+customerName);
customerName = customerName.replaceAll(".", "");
System.out.println("customerName"+customerName);
但这会导致:
客户姓名 Mr.RajKumar
和
顾客姓名
我从第一个 SOP 中获得了正确的客户名称,但从第二个 SOP 中我没有得到任何价值。