Regex to recognize words regardless of whether these are uppercase or lowercase

Hi,

How about the following expression?

System.Text.RegularExpressions.Regex.Match(yourString,"Prestamos?",System.Text.RegularExpressions.RegexOptions.IgnoreCase)

Regards,

1 Like