<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: CSV file with LF in columns. in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344930#M112523</link>
    <description>&lt;P&gt;you can test it in notepad++ :&lt;/P&gt;&lt;P&gt;ctrl+h &lt;/P&gt;&lt;P&gt;then in find what : (?&amp;lt;![",])\n &lt;/P&gt;&lt;P&gt;Replace with : the caracter you want&lt;/P&gt;&lt;P&gt;search mode : regular expression &lt;/P&gt;&lt;P&gt;then you click on replace All and you see if it's ok&lt;/P&gt;</description>
    <pubDate>Tue, 25 May 2021 15:21:07 GMT</pubDate>
    <dc:creator>gjeremy1617088143</dc:creator>
    <dc:date>2021-05-25T15:21:07Z</dc:date>
    <item>
      <title>CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344923#M112516</link>
      <description>&lt;P&gt;I have a CSV file as in the attached image. One of the columns has LF characters in it. The row seaparator is a LF as well. I have tried using tfileinputdelimited with CSV OPtions checked and the the Text Enclosure as """.  tfilenputdelimited seems to ignore the text enclosure property. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions on how to parse the file ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 00:07:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344923#M112516</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2024-11-16T00:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344924#M112517</link>
      <description>&lt;P&gt;I think you need to set the escape char to LF rather than ".&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 05:01:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344924#M112517</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-25T05:01:04Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344925#M112518</link>
      <description>&lt;P&gt;You can use regex expression to replace LF if you could identify the LF for separate row from the rest&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 07:00:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344925#M112518</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-25T07:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344926#M112519</link>
      <description>&lt;P&gt;Thank you for the suggestion. But that does not work.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 14:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344926#M112519</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2021-05-25T14:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344927#M112520</link>
      <description>&lt;P&gt;ok I think you can replace LF not preceded by a double quote or a coma with regex : you read your file as one line as a string (see tFileInputRAw for example) then &lt;/P&gt;&lt;P&gt;(your string).replaceAll("(?&amp;lt;![\",])\\n","the caracter you want instead of LF") in a tjavarow and you save it with tFileOutputRaw.&lt;/P&gt;&lt;P&gt;Then you can read it with LF as row separator.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:04:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344927#M112520</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-25T15:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344928#M112521</link>
      <description>&lt;P&gt;Thank you ! I was just tryng that manually using notepad++. &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try this out in Talend.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:06:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344928#M112521</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2021-05-25T15:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344929#M112522</link>
      <description>&lt;P&gt;it could work if your last field is between double quote or empty&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344929#M112522</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-25T15:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344930#M112523</link>
      <description>&lt;P&gt;you can test it in notepad++ :&lt;/P&gt;&lt;P&gt;ctrl+h &lt;/P&gt;&lt;P&gt;then in find what : (?&amp;lt;![",])\n &lt;/P&gt;&lt;P&gt;Replace with : the caracter you want&lt;/P&gt;&lt;P&gt;search mode : regular expression &lt;/P&gt;&lt;P&gt;then you click on replace All and you see if it's ok&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344930#M112523</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-25T15:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344931#M112524</link>
      <description>&lt;P&gt;Thank you trying it out. Let you know how it goes.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 15:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344931#M112524</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2021-05-25T15:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344932#M112525</link>
      <description>&lt;P&gt;@gjeremy1617088143 thank you. This worked trying it out with notepad++. Will try it out in Talend.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 16:42:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344932#M112525</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2021-05-25T16:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344933#M112526</link>
      <description>&lt;P&gt;@gjeremy1617088143&amp;nbsp;  i am getting a  Java Heap error while reading the file . The file size is around 500 MB . &lt;/P&gt;&lt;P&gt;How do I resolve the Heap Error.  I increased the JVM max  to about 4 GB. Still getting the error.&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 20:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344933#M112526</guid>
      <dc:creator>JSadasivam1614976104</dc:creator>
      <dc:date>2021-05-25T20:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: CSV file with LF in columns.</title>
      <link>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344934#M112527</link>
      <description>&lt;P&gt;Cut it in as many csv you can (5to10) and iterate the job on all of them. It will reduce the heap state (500 mo begin to be huge for csv, i already Work with 10go csv it consume all the memory if you don’t partition the data in smaller files).&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 21:52:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/CSV-file-with-LF-in-columns/m-p/2344934#M112527</guid>
      <dc:creator>gjeremy1617088143</dc:creator>
      <dc:date>2021-05-25T21:52:20Z</dc:date>
    </item>
  </channel>
</rss>

