cancel
Showing results for 
Search instead for 
Did you mean: 

FCC Carriage Return and Line FeedProblems

Former Member
0 Kudos

Hi,

This is the file format i need to convert.

"data","data","data"<CR><LF>

These are the config that I am using in my receiver file CC

proc.fieldSeparator ","

proc.endSeparator '0x0D"0x0A'

proc.beginSepartor "

The FCC worked perfectly only that the file has <CR><CR><LF> rather than <CR><LF>

Please advise the same.

Regards

Krish

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

With proc.endSeparator = \r\n works to me....

Regards,

Carme.

anupam_ghosh2
Active Contributor
0 Kudos

Hi Krish,

you can try

proc.endSeparator '\n'

or

proc.endSeparator '0x0A'

regards

Anupam