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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to remove a carriage return

Status
Not open for further replies.

scottd431

IS-IT--Management
Apr 18, 2002
46
0
0
US
We are writing an interface to send delimited files to send to another vendors system. The problem is the file is working with the exception of the carriage return it is picking up at the end of every record. Is there a way in Informix 4GL with SE to stop this from happening? Thanks for any help. We are also using this on RH Linux and SCO UNIX platforms.
 
Scott:

If I'm understanding you correctly, you create files to be sent to another vendor's system. Is the vendor's system windows or DOS based?

If so, I doubt the 4GL application is creating the CRs. This probably happens when the file is copied to the destination system. That's where the problem is.

I've written tek-tips faq

faq80-1911

that address removing CRs but it uses Unix tools.

Regards,

Ed
 
In the vi edition you need to type the following to replace all ^M

:g/CTRL V + CTRL M (hold CTRL press V and M)/s///g

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top