This method is used to retrieve the matches when matching a string against a regular expression.
Use the following syntax to use the match() method.
string.match( param )
param − A regular expression object.
If the regular expression does not include the g flag, it returns the same result as regexp.exec(string).
If the regular expression includes the g flag, the method returns an Array containing all the matches.
Try the following example.
<html> <head> <title>JavaScript String match() Method</title> </head> <body> <script type="text/javascript"> var str = "For more information, see Chapter 3.4.5.1"; var re = /(chapter \d+(\.\d)*)/i; var found = str.match( re ); document.write(found ); </script> </body> </html>
Chapter 3.4.5.1,Chapter 3.4.5.1,.1