English 中文(简体)
JavaScript RegExp Tutorial

Selected Reading

JavaScript RegExp - toSource()
  • 时间:2024-09-17

JavaScript RegExp - toSource


Previous Page Next Page  

Description

The toSource method string represents the source code of the object. This method does not work with all the browsers.

This method does not work with all the browsers.

Syntax

Its syntax is as follows −


RegExpObject.toSource();

Return Value

Returns the string representing the source code of the object.

Example

Try the following example program.


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

Output


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