Regex Wizard

You asked for the regex results, and I delivered.

Advanced Regex Patterns or Regex Golf or Regular Expressions

Results:

  1. .* matches any character (except newline), 1 or more times
  2. \\d{3}-\\d{2}-\\d{2} is a date in the format MM-YY
  3. \\w{8} is a word with exactly 8 characters

More Regex Tips and Tricks