Question: I need help with this problem The * tool will match zero or more repetitions of character/character class/group. Regex Pattern Abis Test String As Abbbbs
I need help with this problem


The * tool will match zero or more repetitions of character/character class/group. Regex Pattern Abis Test String As Abbbbs In the above image, the Regex Pattern is matched with the Test String. For Example: w* : It will match the character w 0 or more times. [xyz]* : It will match the characters x, y or z 0 or more times. \d* : It will match any digit 0 or more times. Task You have a test string S. Your task is to write a regex that will match S using the following conditions: S should begin with 2 or more digits. . After that, S should have 0 or more lowercase letters. S should end with 0 or more uppercase letters Note This is a regex only challenge. You are not required to write any code. You have to fill the regex pattern in the blank (__------ Change Theme Ruby Regex_Pattern = -- 1 2 3 print !!(gets =~ / #{Regex_Pattern}/)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
