Javascript RegExp教程

JavaScript RegExp \d

说明

\d 匹配一个数字 (0-9)。

示例

以下示例显示了 RegExp 表达式的用法。
<html>
   <head>
      <title>JavaScript RegExp</title>
   </head>
   
   <body>
      <script type = "text/javascript">
         var str = "ab123c";
         var pattern = /\d/g;
         var result = str.match(pattern);
         document.write("Test 1-returned value : " +  result); 
         str = "abc";
         result = str.match(pattern);
         document.write("<br/>Test 2-returned value : " +  result); 	 		 
      </script>
   </body>
</html>

输出

Test 1-returned value : 1,2,3
Test 2-returned value : null
昵称: 邮箱:
Copyright © 2022 立地货 All Rights Reserved.
备案号:京ICP备14037608号-4