java StringBuffer 字符串查找
时间: 2023-03-21 08:03:08 浏览: 102
好的,我明白了。关于java中的StringBuffer字符串查找,您可以使用StringBuffer类的indexOf方法来查找字符串中某个子串的位置。例如:
```
StringBuffer sb = new StringBuffer("Hello World");
int index = sb.indexOf("World");
System.out.println("Index of 'World' in the string is: " + index);
```
这个例子中,我们首先创建了一个StringBuffer对象,然后使用它的indexOf方法来查找子串"World"在字符串中的位置。在这种情况下,indexOf方法会返回6,表示子串在字符串中的起始位置。如果子串不存在于字符串中,indexOf方法会返回-1。
相关问题
java判断字符串中包含某字符串
在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("不包含");
}
阅读全文