android中去掉空格–trim函数
1. String.trim()
trim()是去掉首尾空格
2.str.replace(” “, “”); 去掉所有空格,包括首尾、中间
String str = ” hell o “;
String str2 = str.replaceAll(” “, “”);
版权声明:本文为wangjigaoyi原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。