I have a string
string str = "\"PDORB9-AG, 16 1/2\"\" BIAS UNIT ASSY, ORBIT 900\"";
I need the output in this format
"PDORB9-AG, 16 1/2"" BIAS UNIT ASSY, ORBIT 900"
I tried this regex
Regex re = new Regex("[\"]");
str = str.Replace(re, " ").Trim();
But the str returns in output as "PDORB9-AG, 16 1/2 BIAS UNIT ASSY, ORBIT 900"
the quotes are missing next to 1/2. How to solve this??
Any leads appreciated