eliminate vowels from a string in java code example
Example 1: Java program to remove vowels from string using StringBuffer class
import java.util.Arrays;
import java.util.List;
public class RemoveVowels
{
static String removeVowel(String strVowel)
{
Character[] vowel = {'a', 'e', 'i', 'o', 'u','A','E','I','O','U'};
List<Character> li = Arrays.asList(vowel);
StringBuffer strBuffer = new StringBuffer(strVowel);
for(int a = 0; a < strBuffer.length(); a++)
{
if(li.contains(strBuffer.charAt(a)))
{
strBuffer.replace(a, a + 1, "") ;
a--;
}
}
return strBuffer.toString();
}
public static void main(String[] args)
{
String strInput = "Hello World Java";
System.out.println(removeVowel(strInput));
}
}
Example 2: how to remove voules out of a string
import java.util.Scanner;
public class RemoveVowelsUsingMethod
{
static String removeVowel(String strVowel)
{
Character[] chVowels = {'a', 'e', 'i', 'o', 'u','A','E','I','O','U'};
List<Character> li = Arrays.asList(chVowels);
StringBuffer sb = new StringBuffer(strVowel);
for(int a = 0; a < sb.length(); a++)
{
if(li.contains(sb.charAt(a)))
{
sb.replace(a, a + 1, "");
a--;
}
}
return sb.toString();
}
public static void main(String[] args)
{
String strInput = "Flower Brackets";
System.out.println(removeVowel(strInput));
}
}