java判断字符串中包含某字符串
时间: 2023-12-01 08:39:51 浏览: 138
在Java中,可以使用String类的contains()方法来判断一个字符串是否包含另一个字符串。contains()方法的语法如下:public boolean contains(CharSequence s)。其中,参数s是要查找的字符串,返回值为布尔类型,表示是否包含。需要注意的是,参数s必须是CharSequence类型,也就是说,必须是String、StringBuffer、StringBuilder或CharBuffer类型的对象。如果要查找的是一个字符,可以将字符转化为字符串再使用contains()方法判断,或者使用String类的indexOf()方法。例如:
String str = "hello world";
String subStr = "world";
if(str.contains(subStr)){
System.out.println("包含");
}else{
System.out.println("不包含");
}
另外,如果需要忽略大小写进行查找,可以使用String类的toLowerCase()或toUpperCase()方法将字符串转化为小写或大写,再进行比较。例如:
String str = "Hello World";
String subStr = "world";
if(str.toLowerCase().contains(subStr.toLowerCase())){
System.out.println("包含");
}else{
System.out.println("不包含");
}
阅读全文