I'm using something like this:
vb.net Code:
  1. Dim tmp As String = RichTextBox.Text
  2.         tmp = tmp.Replace("[", "{")
  3.         tmp = tmp.Replace(Space(1), "_")

How do I find all the "Enters" and replace them with a "^"?

I have tried vbcrlf and chr(13), but nothing