toSource()
优质
小牛编辑
137浏览
2023-12-01
描述 (Description)
toSource方法字符串表示对象的源代码。 此方法不适用于所有浏览器。
此方法不适用于所有浏览器。
语法 (Syntax)
其语法如下 -
RegExpObject.toSource();
返回值 (Return Value)
返回表示对象源代码的字符串。
例子 (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>
输出 (Output)
Test 1 - returned value : /script/g
Test 2 - returned value : /\//g