Hello,
I have a string with 
 in it the regex:
string value = Regex.Replace(textNode.Value, @"\s+", " ");
value = value.Replace(" ", "");
value = Regex.Replace(value, @"\
", "");
value = value.Replace("\n", "");
didn't remove it.
How do I go about removing 
?
Note: It did function as a newline when added to a textbox.
Thanks.