Level 2, Challenge 2 - Regular Expressions are like a Party!
Submissions
Challenge Description
Find the pattern in the string "abababab" that matches the following regex: "[a][b]+"
Rules
- Only use the "a" and "b" characters in your regex
- Match as many of the given characters as possible
- Do not use any other characters than "[a]" and "b" in your regex
- Do not use anchors or modifiers