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.
Its syntax is as follows −
RegExpObject.toSource();
Returns the string representing the source code of the object.
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>
Test 1 - returned value : /script/g Test 2 - returned value : /\//g