I would like to insert the following into a string
some text here some text here some text here
some text here
Assign your string to a variable and then replace the line break and carriage return characters with nothing, like this:
myString = myString.Replace(vbCrLf, "")