El método Replace del objeto RegExp se utiliza para buscar un patrón en una cadena y reemplazarlo por una cadena de reemplazo especificada.
Sintaxis: RegExpObject.Replace(string, replacement)
Argumentos:
string: cadena de entrada en la que se realizará la búsqueda y el reemplazo.
replacement: cadena que reemplazará los patrones coincidentes. Esto también puede incluir tokens de sustitución especiales (como $1, $2, etc.) para hacer referencia a los grupos capturados en la expresión regular.
Ejemplo 1: reemplazo simple
Dim regEx, inputStr, result
' Create a new RegExp object
Set regEx = CreateObject("VBScript.RegExp")
' Set the pattern to match the word "cat"
regEx.IgnoreCase = True
regEx.Global = True
regEx.Pattern = "cat"
' Input string
inputStr = "The cat sat on the cat mat."
' Replace "cat" with "dog"
result = regEx.Replace(inputStr, "dog")
'Now result has the value "The dog sat on the dog mat."
Ejemplo 2: uso de la captura de grupos el reemplazo
Dim regEx, inputStr, result
' Create a new RegExp object
Set regEx = CreateObject("VBScript.RegExp")
' Set the pattern to match a date in MM-DD-YYYY format
regEx.IgnoreCase = True
regEx.Global = True
regEx.Pattern = "(\d{2})-(\d{2})-(\d{4})"
' Input string
inputStr = "Today's date is 05-19-2025."
' Swap the date format to YYYY-MM-DD
result = regEx.Replace(inputStr, "$3-$1-$2")
' Display the result
'Now result has the value "Today's date is 2025-05-19."