I know precisely zilch about regular expressions and figured this was as good an opportunity as any to learn at least the most basic of basics.
How do I do this case-insensitive string replacement in C# using a regular expression?
myString.Replace("/kg", "").Replace("/KG", "");
(Note that the '/' is a literal.)