java判断字符串中包含
时间: 2023-10-17 13:22:26 浏览: 115
java判断字符串包含某个字符的实例方法
可以使用 String 类的 contains() 方法来判断一个字符串中是否包含另一个字符串,例如:
```java
String str = "Hello, World!";
if (str.contains("World")) {
System.out.println("包含 World");
}
```
运行结果为:
```
包含 World
```
如果需要忽略大小写,可以使用 String 类的 toLowerCase() 方法转换为小写再判断,例如:
```java
String str = "Hello, World!";
if (str.toLowerCase().contains("world")) {
System.out.println("包含 world");
}
```
运行结果同样为:
```
包含 world
```
阅读全文