gpt4 book ai didi

java - 查找字符串中第一个元音的索引

转载 作者:行者123 更新时间:2023-12-02 03:17:58 24 4
gpt4 key购买 nike

所以我很难找到字符串中第一个元音的索引。这是我想出的代码,但它没有返回任何内容。它应该返回第一个元音的索引,例如如果字符串是“Hello World”,它应该返回 1,因为第一个元音的索引是“e”。如果给定字符串中没有元音,则应返回 -1。

public class Vowel
{
public static int isVowel(String s)
{
int a = -1;
for(int i = 0; i < s.length(); i++)
{
if("aeiouAEIOU".indexOf(i) >= 0)
{
a = i;
}
}
return a;
}
}

最佳答案

利用私有(private)静态方法检查某个字符是否为元音:

public static int firstVowelPos(String s) {
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if (isVowel(c))
return s.indexOf(c);
}
return -1;
}

private static boolean isVowel(char c) {
return "AEIOUaeiou".indexOf(c) != -1;
}

如果您不需要在代码中的其他位置检查元音,可以通过将元音检查移到条件语句中来简化:

public static int firstVowelPos(String s) {
for (int i = 0; i < s.length(); i++) {
char c = s.charAt(i);
if ("AEIOUaeiou".indexOf(c) != -1)
return s.indexOf(c);
}
return -1;
}

关于java - 查找字符串中第一个元音的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40029839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com