Question
Java help. I am using the String Replace All method in the while loop to remove the vowels(uppercase and lowercase). I am not receiving any
Java help. I am using the String Replace All method in the while loop to remove the vowels(uppercase and lowercase). I am not receiving any output when I run the program. The code is listed below:
package Practice; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.nio.charset.StandardCharsets; public class ReplaceAll {
public static void main(String[] args) throws IOException { InputStreamReader reader = new InputStreamReader(System.in, StandardCharsets.UTF_8); BufferedReader in = new BufferedReader(reader); System.out.println("Enter a word: "); String str = in.readLine(); while ((str = in.readLine()) != null) { String new_str = str.replaceAll("[aeiouAEIOU]", ""); System.out.println(new_str); } }
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started