Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

In this regex, the '.' means any character and the '*' is a quantifier for the proceedingpreceeding '.'  which tells the matcher to look for any number of '.' (which matches any character), including zero.

Another common quantifier is '+' which matches when it sees at least one of the proceeding preceeding characters (in this case the user would enter 'test.+'

...