M
MattC
How can the following be represented using regex?
html = html.Replace("\n", "");
html = html.Replace("\t", "");
html = html.Replace("\r", "");
TIA
html = html.Replace("\n", "");
html = html.Replace("\t", "");
html = html.Replace("\r", "");
TIA