Android 判断空格
时间: 2023-09-16 17:12:05 浏览: 270
Android之EditText控制禁止输入空格和回车
在 Android 开发中,可以使用以下方法来判断一个字符串是否包含空格:
```java
String str = "Hello World";
// 方法一:使用contains()方法
boolean containsSpace = str.contains(" ");
if (containsSpace) {
// 字符串包含空格
} else {
// 字符串不包含空格
}
// 方法二:使用indexOf()方法
int index = str.indexOf(" ");
if (index != -1) {
// 字符串包含空格
} else {
// 字符串不包含空格
}
// 方法三:使用正则表达式
boolean matchesSpace = str.matches(".*\\s+.*");
if (matchesSpace) {
// 字符串包含空格
} else {
// 字符串不包含空格
}
```
这些方法都可以判断一个字符串中是否包含空格,你可以根据自己的需求选择其中一种方法使用。
阅读全文