Miêu tả

Phương thức RegExp toSource trong JavaScript biểu diễn mã nguồn của đối tượng.

Phương thức này không làm việc với tất cả các trình duyệt.

Cú pháp

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

RegExpObject.toSource();

Trả về giá trị

Trả về chuỗi biểu diễn code nguồn của đối tượng.

Ví dụ

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

<html>
   
   <head>
      <title>JavaScript RegExp toSource 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.toSource(str);
         document.write("Test 1 - returned value : " +  result); 
         
         re = new RegExp( "/", "g" );
         
         var result = re.toSource(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:




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