A program in Java to replace all the vowels in a string with a specified character.

In the above Java program to replace all the vowels in a string with a specified character we created a function named validate() and then with the help of a built-in function “replaceAll”, replaced the vowel with passed string. Sample Output: Input the string: lazy frog Original string: lazy frog After replacing vowel(s) with specified…

Read More »