java输入一个字符串和一个字符,其中要求字符串包含该字符,判断该字符在字符串中的位置
时间: 2024-05-26 20:10:12 浏览: 94
你可以使用Java的indexOf()方法来判断字符在字符串中的位置,例如:
String str = "Hello, world!";
char ch = 'o';
int index = str.indexOf(ch);
System.out.println("The index of the character " + ch + " in the string is " + index);
输出结果为:
The index of the character o in the string is 4
注意,如果该字符在字符串中不存在,indexOf()方法会返回-1。
阅读全文