Copyright © tutorialspoint.com
The toSource method string representing the source code of the object.
This method does not work with all the browsers.
RegExpObject.toSource(); |
Here is the detail of parameters:
NA
Returns the string representing the source code of the object.
<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> |
This will produce following result in Firefox:
Test 1 - returned value : /script/g Test 2 - returned value : /\//g |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com