Assume I have this:
Regex.Replace(\"aa cc bbbb\",\"aa cc\",\"\",RegexOptions.IgnoreCase);
But I also need to ignore white-spaces. So, I fo
According to MSDN:
A bitwise OR combination of RegexOption enumeration values.
So just use OPT_A | OPT_B
OPT_A | OPT_B