java string 查找字符串中有没有该字符串
发布网友
发布时间:2023-01-20 00:56
我来回答
共2个回答
热心网友
时间:2023-11-25 16:00
String strA = "Hello World";
String strB = "World";
// 判断字符串A中字符串B方法:
if(strA.indexOf(strB) != -1) { // 如果indexOf() 返回-1,表示不包含
System.out.println("字符串" + strA + "中有" + strB);
} else {
System.out.println("字符串" + strA + "中没有" + strB);
}
热心网友
时间:2023-11-25 16:00
用contains()来判断
热心网友
时间:2023-11-25 16:00
String strA = "Hello World";
String strB = "World";
// 判断字符串A中字符串B方法:
if(strA.indexOf(strB) != -1) { // 如果indexOf() 返回-1,表示不包含
System.out.println("字符串" + strA + "中有" + strB);
} else {
System.out.println("字符串" + strA + "中没有" + strB);
}
热心网友
时间:2023-11-25 16:00
用contains()来判断