Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
429 views
in Technique[技术] by (71.8m points)

char - What's the best way to check if a character is a vowel in Java?

I'm trying to check if a certain char is a vowel. What's the best way to go about doing this?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here's the solution I've been using for a while, and it hasn't let me down yet:

private static String VOWELS = "Aàá????ā????????????????????E???????????????ē???ěèéê?I???????ī???ìí???O?????????????????????ōòó?????U?ū????ùú?ü??????????????Y???????Y";
private static boolean isVowel(char c)
{
    return VOWELS.indexOf(Character.toUpperCase(c)) >= 0;
}

For my applications, it's reasonably fast.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...