Regex Wizard
You asked for the regex results, and I delivered.
Advanced Regex Patterns
or
Regex Golf
or
Regular Expressions
Results:
- .* matches any character (except newline), 1 or more times
- \\d{3}-\\d{2}-\\d{2} is a date in the format MM-YY
- \\w{8} is a word with exactly 8 characters
More Regex Tips and Tricks