java中查找字符串中字符
时间: 2024-05-06 20:15:22 浏览: 81
你可以使用 String 类中的 indexOf(char ch) 方法来查找字符在字符串中的位置。这个方法返回一个整数,表示字符在字符串中第一次出现的位置。如果字符没有出现在字符串中,这个方法将返回 -1。下面是一个示例代码:
```java
String str = "Hello, world!";
char ch = 'o';
int index = str.indexOf(ch);
if (index != -1) {
System.out.println("The character '" + ch + "' is found at index " + index);
} else {
System.out.println("The character '" + ch + "' is not found in the string.");
}
```
这个代码将输出:
```
The character 'o' is found at index 4
```
阅读全文