IBM interview question

Write Java program to take a sentence as input and display the same sentence removing the vowels in it.

Interview Answer

Anonymous

29 Jan 2017

Use this method: replaceAll("aeiouAEIOU","");