Regex Replace Between Quotations
- by Kyle Rozendo
Hi All,
I am wondering on where to begin to perform the following replace in regex:
Read file (.cs file)
Replace anything between quotations ("e.g:") with its uppercase version ("E.G:")
By example:
string m = "stringishere";
Becomes
string m = "STRINGISHERE";
Thanks in advance,
Kyle