Writing a file utility to strip out all non-ASCII characters from files. I have this Regex:
Regex rgx = new Regex(@"[^\u0000-\u007F]");
Which works fine. But unfortunatly, I've discovered some silly people use right angles (¬) as delimiters in their files, so these get stripped out as well, but I need those!
I'm pretty new to Regex, and I do understand the basics, but any help would be awesome!
Thanks in advance!