I have a line.
There are no items to show in this view of the "Personal Documents"
then assign the variable str str
string str ="There are no items to show in this view
of the \"Personal Documents\" library"
Now we plan to replace "\" and make it the actual string for the str object. I tried below but did not work
str = str.Replace(@"\",string.Empty);
I want the str value to be
string str ="There are no items to show in this view
of the "Personal Documents" library"
I need to find this line in another line. When searching on this line. I could not find because str contains "\".
source
share