Javascript Regexp 简明教程

JavaScript RegExp - .

Description

  1. matches a single character.

Example

以下示例显示了 RegExp 表达式的用法。

<html>
   <head>
      <title>JavaScript RegExp</title>
   </head>

   <body>
      <script type = "text/javascript">
         var str = "abc";
         var pattern = /./g;

         var result = str.match(pattern);
         document.write("Test 1 - returned value : " +  result);

         str = "";
         result = str.match(pattern);
         document.write("<br/>Test 2 - returned value : " +  result);
      </script>
   </body>
</html>

Output

Test 1 - returned value : a,b,c
Test 2 - returned value : null