一段判断在java中一个字符串是否含有一个字符串的代码
时间: 2024-02-05 19:14:17 浏览: 118
可以使用Java中的`contains()`方法来判断一个字符串是否包含另一个字符串,示例代码如下:
```java
String str1 = "Hello World";
String str2 = "World";
if(str1.contains(str2)){
System.out.println("str1 contains str2");
}else{
System.out.println("str1 does not contain str2");
}
```
以上代码输出结果为:`str1 contains str2`。
相关问题
java语言判断一段字符串中是否包含几个字符串
Java中可以使用 `String` 类的 `contains()` 方法来判断一个字符串是否包含另一个字符串。如果需要判断一个字符串中是否包含多个字符串,可以使用类似下面的代码:
```java
String str = "This is a sample string";
if (str.contains("sample") && str.contains("is")) {
System.out.println("包含 sample 和 is");
} else if (str.contains("sample")) {
System.out.println("只包含 sample");
} else if (str.contains("is")) {
System.out.println("只包含 is");
} else {
System.out.println("不包含 sample 和 is");
}
```
上述代码中,我们使用了 `contains()` 方法来判断字符串 `str` 是否包含指定的字符串,如果包含则输出相应的信息。您可以根据需求进行修改。
java判断字符串是否包含另外一段字符串
在Java中,可以使用`contains()`方法来判断一个字符串是否包含另一个字符串。示例代码如下:
```java
public class Main {
public static void main(String[] args) {
String str1 = "Hello, World!";
String str2 = "World";
boolean isContains = str1.contains(str2);
System.out.println("字符串str1是否包含字符串str2: " + isContains);
}
}
```
阅读全文