I would like to insert the following into a string
some text here some text here some text here
some text here
In VB.NET there's a vbCrLf constant for linebreaks:
Dim s As String = "your string".Replace(vbCrLf, "")