Can you please tell me how to remove CRLF characters from a flat file which has been generated by BizTalk?
Appreciate your quick response to this question, as we are in the middle of a critical delivery.
Thanks and Regards Madhu
Can you please tell me how to remove CRLF characters from a flat file which has been generated by BizTalk?
Appreciate your quick response to this question, as we are in the middle of a critical delivery.
Thanks and Regards Madhu
Using any editor or word processor, search and replace CR and LF with nothing.
The example below uses free Notepad++, which uses C-style \r and \n for Carrige return and Newline, respectively. LibreOffice Writer, MS Word and other editors/processors use different characters for char(0x0D) and char(0x0A).