Android 去空格
时间: 2023-11-11 13:56:42 浏览: 181
一键去空格
在Android中,去除空格有多种方法。根据你提供的引用内容,我可以给出以下几种方法:
方法一:使用trim()方法去除首尾空格。
例如:
String str = " hello world ";
String trimmedStr = str.trim();
经过trim()方法处理后,trimmedStr的值为"hello world",首尾的空格被去除了。
方法二:使用replace(" ","")方法去除所有空格。
例如:
String str = " hello world ";
String replacedStr = str.replace(" ","");
经过replace(" ","")方法处理后,replacedStr的值为"helloworld",所有的空格都被去除了。
方法三:使用replaceAll("\\s+","")方法去除所有空格。
例如:
String str = " hello world ";
String replacedStr = str.replaceAll("\\s+","");
经过replaceAll("\\s+","")方法处理后,replacedStr的值为"helloworld",所有的空格都被去除了。这种方法可以匹配多个连续的空白字符。
请注意,以上方法都是针对字符串进行操作的,如果需要去除EditText中的空格,可以将EditText的文本先转换成字符串,然后再进行处理。
阅读全文