Description:
The toSource method string representing the source code of the object.This method does not work with all the browsers.
Syntax:
RegExpObject.toSource(); |
- NA
Return Value:
Returns the string representing the source code of the object.Example:
<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
+JavaScript +JavaScript Frameworks Links +Javascript Development +JavaScript's and More, Software and Marketing +JavascriptU +JavaScriptOn +Javascript Problems +JavaScriptOn +javaScript is a creek in West Virginia in the summe +enJineS +JavascriptU +Javascript Tutor
No comments: