Descrição
o toSourcestring do método representa o código-fonte do objeto. Este método não funciona com todos os navegadores.
Este método não funciona com todos os navegadores.
Sintaxe
Sua sintaxe é a seguinte -
RegExpObject.toSource();
Valor de retorno
Retorna a string que representa o código-fonte do objeto.
Exemplo
Experimente o seguinte programa de exemplo.
<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>
Resultado
Test 1 - returned value : /script/g
Test 2 - returned value : /\//g