Valor booleano (True o False) que especifica si la expresión regular no debe distinguir entre mayúsculas y minúsculas.
Note:
El valor predeterminado es False.
Uso de la propiedad definido:
Sintaxis: Object.IgnoreCase= "<True/False>"
Dim regex, inputText
' Create a new RegExp object
Set regex = CreateObject("VBScript.RegExp")
' Set the pattern and ignore case
regex.Pattern = "apple" ' Pattern to match the word 'apple'
regex.IgnoreCase = True ' Ignore case when matching
' Input text
inputText = "I ate an AppLe today."
' Test if the pattern matches the input text
If regex.Test(inputText) Then
'Match found Logic
Else
'No match found Logic
End If
El método Test comprueba si el patrón coincide con la cadena y devuelve True porque encuentra AppLe en el texto, aunque el uso de las mayúsculas sea diferente. La configuración IgnoreCase = True ayuda a buscar la cadena sin distinguir entre mayúsculas y minúsculas. Si IgnoreCase = False, el método Test habría buscado estrictamente la cadena apple y el resultado habría sido False, ya que apple no está disponible en inputString.