La propiedad source en JavaScript se usa para devolver el texto del patrón RegExp.
Sintaxis:
RegExpObject.source
Donde RexExp se refiere a la expresión regular.
Ejemplo: este ejemplo devuelve el texto «Geek».
<!DOCTYPE html> <html> <body style="text-align:center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>Source Property</h2> <p>RegExp: /Geek/gi</p> <button onclick="geek()">Click it!</button> <p id="app"></p> <script> function geek() { var patt1 = /Geek/gi; var res = "Text of RegExp is: " + "<b>" + patt1.source + "</b>"; document.getElementById("app").innerHTML = res ; </script> </body> </html>
Salida:
Antes de hacer clic en el botón:
Después de hacer clic en el botón:
Navegadores compatibles: Los navegadores compatibles con la propiedad fuente de JavaScript se enumeran a continuación:
- Google Chrome
- safari de manzana
- Mozilla Firefox
- Ópera
- explorador de Internet
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA