String对象允许你处理一系列字符;它用许多辅助方法包装Javascript的字符串原始数据类型。当JavaScript在字符串原语和字符串对象之间自动转换时,可以在字符串原语上调用string对象的任何辅助方法。本文主要介绍JavaScript(JS) string.match( param ) 方法。

1、描述

此方法用于在将字符串与正则表达式进行匹配时检索匹配项。

2、语法

使用以下语法使用match()方法。

string.match(param)

3、参数

param :正则表达式对象。

4、返回值

  • 如果正则表达式不包含g标志,它将返回与regexp.exec(string)相同的结果。
  • 如果正则表达式包含g标志,该方法将返回包含所有匹配项的数组

5、使用示例

<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>

6、输出

Chapter 3.4.5.1,Chapter 3.4.5.1,.1

推荐文档