Hi
string t10 = "xftag Source=\"L\">500671";
I want to remove "\" from above string and resultant string shld be "xftag Source="L">500671"
I have tried many ways but I am not getting the desired output . One of the ways I tried , pls see below
string t10 = "xftag Source=\"L\">500671";
string r10 = t10.Replace("\"", "*");
r10 = r10.Replace('*','"');
Still I am getting same output i.e. "xftag Source=\"L\">500671"
string t10 = "xftag Source=\"L\">500671";
I want to remove "\" from above string and resultant string shld be "xftag Source="L">500671"
I have tried many ways but I am not getting the desired output . One of the ways I tried , pls see below
string t10 = "xftag Source=\"L\">500671";
string r10 = t10.Replace("\"", "*");
r10 = r10.Replace('*','"');
Still I am getting same output i.e. "xftag Source=\"L\">500671"