I am trying to do what should be a simple pattern match and replace:
Regex.Replace(sUserSettings, @"Name={could_be_anything};", "Name=Tim;");
I have been try along the lines of:
Regex.Replace(sUserSettings, @"Name=\*[];", "Name=Tim;");
No joy - where am I going wrong?