0

I have a requirement where a .DAT file with data delimited with a HEX code needs to be read in talend.

Below is the sample data -

enter image description here

I have tried tfileinputdelimited, tfileinputpositional, tfileinputraw but nothing worked as expected. The delimiter is a HEX 00x7 or BEL - click here

How can I read this kind of file in talend ?

Your help is appreciated. Thank you in advance.

Ankush Rathi
  • 622
  • 1
  • 6
  • 26
  • Link to example please. Please never post images of text. They are not searchable, we cannot copy-paste... Always copy-paste the text and format it properly. Also, what actually does this have to do with Java? – g00se Aug 11 '21 at 21:18

1 Answers1

0

You can do it by using the utf-8 representation of the character in the field separator: \u0007 enter image description here

Ibrahim Mezouar
  • 3,981
  • 1
  • 18
  • 22