Chr Hex0C is the printer linefeed character and Hex0D is the carriage return needed to print a new line. Its always there wherever you have typed the enter key.
The INSTR function searches for any characters in a string and returns it's position in the file, then you could use Left() and Mid() to get the string up to the chrs and the part after it and recombine them. If more than one set of OC CD's then loop until none found
Dim StartPos as Integer,ChrPosn as Integer
StartPos=1
ChrPosn=1
Do while ChrPosn > 0 'keep looking until none found
ChrPosn = INSTR(StartPos,MyString,(Chr(&h0C) & Chr(&h0D)))
MyString=Left(MyString,ChrPosn-1) & Mid(MyString,ChrPosn+2)
StartPos=ChrPosn + 2 'look ahead for more
Loop