A continuación se muestra el ejemplo del método string.replace().
- Ejemplo:
javascript
<script> var string = 'GeeksForGeeks'; var newstring = string.replace(/GeeksForGeeks/, 'GfG'); document.write(newstring); </script>
- Producción:
GfG
El string.replace() es un método incorporado en JavaScript que se usa para reemplazar una parte de la string dada con otra string o una expresión regular. La string original permanecerá sin cambios.
Sintaxis:
str.replace(A, B)
Parámetros: aquí el parámetro A es una expresión regular y B es una string que reemplazará el contenido de la string dada.
Valores devueltos: Devuelve una nueva string con elementos reemplazados.
Código JavaScript para mostrar el funcionamiento de este método:
Código #1:
Aquí el contenido de la string GeeksForGeeks será reemplazado con gfg.
javascript
<script> // Assigning a string var string = 'GeeksForGeeks is a CS portal'; // Calling replace() method var newstring = string.replace(/GeeksForGeeks/, 'gfg'); // Printing replaced string document.write(newstring); </script>
Producción:
gfg is a CS portal
Código #2:
javascript
<script> // Taking a regular expression var re = /GeeksForGeeks/; // Taking a string as input var string = 'GeeksForGeeks is a CS portal'; // Calling replace() method to replace // GeeksForGeeks from string with gfg var newstring = string.replace(re, 'gfg'); // Printing new string with replaced items document.write(newstring); </script>
Producción:
gfg is a CS portal
Navegadores compatibles:
- Google Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Internet Explorer 5.5 y superior
- Ópera 4 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA