I have string.
There are no items to show in this view of the "Personal Documents"
then assign to string str variable
string str ="There are no items to show in this view
of the \"Personal Documents\" library"
Now planning to replace "\" and make it to actual string to str object. I tried below, but did not worked
str = str.Replace(@"\",string.Empty);
I want str value should be
string str ="There are no items to show in this view
of the "Personal Documents" library"
I need to find this string in another string. While searching into that string. I couldn't found because str contains "\".