Miêu tả

Phương thức RegExp toString trong JavaScript trả về một biểu diễn dạng chuỗi của một Regular Expression trong một Form của Regular-Expression Literal.

Cú pháp

Cú pháp của nó như sau:

RegExpObject.toString();

Trả về giá trị

Trả về một biểu diễn dạng chuỗi của một Regular Expression.

Ví dụ

Bạn thử chương trình ví dụ sau:

<html>
   
   <head>
      <title>JavaScript RegExp toString Method</title>
   </head>
   
   <body>
      
      <script type="text/javascript">
         var str = "Javascript is an interesting scripting language";
         var re = new RegExp( "script", "g" );
         
         var result = re.toString(str);
         document.write("Test 1 - returned value : " +  result); 
         
         re = new RegExp( "/", "g" );
         
         var result = re.toString(str);
         document.write("<br />Test 2 - returned value : " +  result); 
      </script>
      
   </body>
</html>

Kết quả

Test 1 - returned value : /script/g
Test 2 - returned value : ///g 
<

Các bài học JavaScript khác tại s2sontech:

hr />

Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday