How do I read tabs and newlines from a richtextbox
For instance, I would like to do the following:
richTextBox.Text.Replace(
"\n", "<br>");But it is not picking up \n as a character in the richtextbox.
Thanks
How do I read tabs and newlines from a richtextbox
For instance, I would like to do the following:
richTextBox.Text.Replace(
"\n", "<br>");But it is not picking up \n as a character in the richtextbox.
Thanks
richtextbox escape characters
Montana16
richtTextBox.Text = richTextBox.Text.Replace("\n", "<br>");