从下标 0 开始索引,找出单词 “welcome” 在字符串“Hello, welcome to my world.” 中出现的位置,找不到返回 -1的代码
时间: 2024-06-07 08:05:12 浏览: 81
查询字符串在字符串中的索引位置
int index = -1;
String str = "Hello, welcome to my world.";
String keyword = "welcome";
String[] words = str.split(" ");
for (int i = 0; i < words.length; i++) {
if (words[i].equals(keyword)) {
index = i;
break;
}
}
System.out.println(index); // 输出 1
阅读全文