string 去除所有空格
string 去除所有空格
String id=" wh z ";
String str2 = id.replaceAll(" ", "");
System.out.println(str2);
返回结果
whz
原文作者:隔壁老王会翻墙
原文地址: https://blog.csdn.net/weixin_43686599/article/details/120467313
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
原文地址: https://blog.csdn.net/weixin_43686599/article/details/120467313
本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
相关文章