how to get the last vowel of a string in java code example
Example: how to get the last vowel of a string in java
final String vowels = "aeiou";
for(int i = yourString.length() - 1; i > 0; i--)
{
if(vowels.indexOf(yourString.toLowerCase().charAt(i)) >= 0)
{
System.out.println("The last vowel is : " + yourString.charAt(i));
break;
}
}