Syntax
string.match(regexpression)
The match() method searches the string for the regular expression passed to the method.
The regular expression is made up of a pattern and flags.
The method returns an array containing the matches found in the string.
See RegExp for how to use the regular expression.