java如何查找指定字符

36次阅读
没有评论

共计 794 个字符,预计需要花费 2 分钟才能阅读完成。

在 Java 中,可以使用字符串类的 indexOf()方法来查找指定字符在字符串中的位置。

例如,下面的代码示例演示了如何查找字符串中第一个出现的指定字符的位置:

String str = "Hello, World!";
char ch = 'o';
int index = str.indexOf(ch);

if (index != -1) {System.out.println("Character '" + ch + "' found at index " + index);
} else {System.out.println("Character '" + ch + "' not found in the string.");
}

在上面的示例中,我们定义了一个字符串 str 和一个字符 ch,然后使用indexOf() 方法来查找字符 ch 在字符串 str 中第一次出现的位置。如果找到了指定字符,就会返回该字符在字符串中的索引位置,否则返回 -1。

除了使用字符作为参数,indexOf()方法还可以接受字符串作为参数,用来查找字符串中第一次出现的子字符串的位置。

String str = "Hello, World!";
String substr = "World";
int index = str.indexOf(substr);

if (index != -1) {System.out.println("Substring '" + substr + "' found at index " + index);
} else {System.out.println("Substring '" + substr + "' not found in the string.");
}

上面的示例演示了如何查找字符串中第一次出现的子字符串的位置。如果找到了子字符串,就会返回该子字符串在字符串中的索引位置,否则返回 -1。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2024-04-13发表,共计794字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)