Replace Double Quote with Empty String using C#
string strvariable="Frame size 7" x 12" inches";
string result = strvariable.Replace("\"", "");
==============Answer=================
Frame size 7 x 12 inches
Comments
Post a Comment