Engaged Employer
Write a simple Java code to remove all vowels from a string.
Anonymous
public class RemoveVowels { public static void main(String[] args) { String str = "RemoveVowels"; String output = str.replaceAll("[aeiouAEIOU]", ""); System.out.println(output); } }
Check out your Company Bowl for anonymous work chats.