Hi.
I'm making editors for a few different languages with vb.net, and what I want to do is to automatically correct the case of certain keywords and pre-built functions. I could of course use something like "Regex.Replace("msgbox", "MsgBox", RegexOptions.IgnoreCase)", but doing that for every function of VBScript is very time-consuming. So if I have a regex like "(MsgBox|InputBox|CStr)", is there any way to use the Regex.Replace function to convert any match to the case in which it appears in the regex?