If I have a few strings:
str = "This is a cool string (orch. details here): 2. Denied."
str2 = " (Orch. details here)" <--notice the capital letter
and then I do this line of code to try to clear that part out:
str3 = Regex.Replace(str, str2, "", RegexOptions.IgnoreCase);
str3 ends up being exactly as what str was before execution. I suspect that it is not "seeing" the other characters such as the periods because when I do this with just simple alphabetic characters in str and str2 then it will replace it just fine.
What gives?! :)
Thank you for any insight!