Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Converting UNIX end of line 1

Status
Not open for further replies.

SteveCulshaw

Programmer
Joined
Oct 13, 2000
Messages
48
Location
GB
Can anyone explain how I convert the UNIX end of line character? - I think it's chr(10)
I need to change it to a <space>
I've tried
formula = Replace ({BCCASE.ADDRESS}, chr(10), &quot; &quot; ) Cheers,
Steve C.
 
Chr(10) is backspace. Space is Chr(40).
 
Try Replace ({BCCASE.ADDRESS}, chr(13), &quot; &quot; )
 
Thanks for that, the replace of chr(13) with &quot; &quot; worked a treat [thumbsup] Cheers,
Steve C.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top