I have a string in the following format
string s = "This is a Test String.\n This is a next line.\t This is a tab.\n'
I want to remove all the occurrences of \n
and \r
from the string above.
I have tried string s = s.Trim(new char[] {'\n', '\r'});
but it didn't help.
I like to use regular expressions. In this case you could do:
string replacement = Regex.Replace(s, @"\t|\n|\r", "");
Regular expressions aren't as popular in the .NET world as they are in the dynamic languages, but they provide a lot of power to manipulate strings.