Question: Description Write a method that takes a String as a parameter and prints to the screen which of the regular expressions shown below is satisfied

Description Write a method that takes a String as a parameter and prints to the screen which of the regular expressions shown below is satisfied by the String. The String can only contain the characters a and b and you must use the .matches(<...>) method with a regular expression. The method doesn't have to return anything. Regular Expression No. Regular Expression 1: a(b|a)b 2: (ab)*b 3: a(b|a)* 4: ((a|b)a)* If the String satisfies more than one regular expression print it on a new line. See output. If the String does not satisfy any expression have a valid print statement in your main method call the method with user input. Sample Input 1 abb Sample Output 1 1 2 3 Sample Input 2 ababad Sample Output 2 Not in the language

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!