D
David C
I have tried
newstring = oldstring.Replace(Convert.ToChar(92), ' ');
newstring = oldstring.Replace("\\", " ");
Neither of which works. I am tring to take out all \ (slashes). Please help.
newstring = oldstring.Replace(Convert.ToChar(92), ' ');
newstring = oldstring.Replace("\\", " ");
Neither of which works. I am tring to take out all \ (slashes). Please help.