How to replace the below string in C#
Current:
\"John K \"GEN\" Greg\"
The Goal:
\"John K \\\"GEN\\\" Greg\"
To remove ALL quotes from a string, try:
field.Value = Regex.Replace(field.Value, @"[\""]", "", RegexOptions.None);
What a pain trying to find this answer on the internet!