Java判断字符串是否有"SH"
时间: 2023-12-29 17:05:14 浏览: 121
Java检索字符串中是否存在某字符
5星 · 资源好评率100%
可以使用contains方法来判断字符串是否包含"SH",示例如下:
```java
String str = "This is a String with SH";
if (str.contains("SH")) {
System.out.println("字符串中包含SH");
} else {
System.out.println("字符串中不包含SH");
}
```
输出:
```
字符串中包含SH
```
阅读全文