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 reformat dbf to fixed length wo CR LF?

Status
Not open for further replies.

dc509

IS-IT--Management
Feb 27, 2003
16
0
0
US
I need to reformat an address file from a dbf to a fixed length file (to send to our catalog mailing company) with NO Carriage Return or Line Feed characters.

I know I can use COPY TO ... TYPE SDF, but this includes CR/LF.

I'm probably missing something simple.

Thanks

David

BTW, I really like this site. I read the questions and answers about every day. I'm learning a bunch! :)
 
USE address

COPY TO address TYPE sdf
aaa=FILETOSTR("address.txt")
aaa=STRTRAN(aaa,CHR(13)+CHR(10),"")
=STRTOFILE(aaa,"address1.txt") && no CR/LF in this file
 
Thanks for the quick response. That worked!

David
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top