<?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: [resolved] Escape character in csv in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196601#M686</link>
    <description>Hi there -
&lt;BR /&gt;I have a csv file in which a particular column (address column) has a text value that contains a comma (e.g. "2000 Redwood Shores, Redwood city, CA"). I want to be able to read this entire value as one value and not be split because there are commas in the value
&lt;BR /&gt;To do this, I set the csv options for reading this file in tFileInputDelimited as follows:
&lt;BR /&gt;Row Separator: "\n"
&lt;BR /&gt;Field Separator: ","
&lt;BR /&gt;Escape Char: ""
&lt;BR /&gt;Text enclosure: """
&lt;BR /&gt;But unfortunately, the tool still considers the comma in the value as a field separator and returns the following as three separate fields:
&lt;BR /&gt;2000 Redwood Shores
&lt;BR /&gt;Redwood city
&lt;BR /&gt;CA
&lt;BR /&gt;Can you please throw some light on this
&lt;BR /&gt;Thanks
&lt;BR /&gt;Sri</description>
    <pubDate>Mon, 07 Mar 2011 05:50:24 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2011-03-07T05:50:24Z</dc:date>
    <item>
      <title>[resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196596#M681</link>
      <description>Hi all;
&lt;BR /&gt;I am trying to ignore "\" character in an adress line in a .csv file,
&lt;BR /&gt;e.g.= "Zoologiska artiklar - Tillverkare Grossister\,",Limex AB in this line backspace (\) character should be an escape character
&lt;BR /&gt;i tried to use tFileInputDelimited and set Escape Char to "\" but it did not work. Is there any simple way to do it?
&lt;BR /&gt;
&lt;BR /&gt;Best Regards
&lt;BR /&gt;bahadir.</description>
      <pubDate>Sat, 16 Nov 2024 13:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196596#M681</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196597#M682</link>
      <description>Hello 
&lt;BR /&gt;Did you try "\\"? if it doesn't work, please show us an example file and what are your expected result?
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Wed, 13 Oct 2010 14:40:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196597#M682</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-10-13T14:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196598#M683</link>
      <description>my input file is like that : &lt;BR /&gt;asd\,ghj&lt;BR /&gt;asd,dfg&lt;BR /&gt;(comma is the field seperator)&lt;BR /&gt;what i expect is :&lt;BR /&gt;asd,ghj&lt;BR /&gt;asd,dfg</description>
      <pubDate>Wed, 13 Oct 2010 15:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196598#M683</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-10-13T15:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196599#M684</link>
      <description>Hi 
&lt;BR /&gt;It is impossible to ignore the character "\" in the example file you gave, however, you can remove it on other component such as tMap later. please see my screenshots. 
&lt;BR /&gt;Best regards 
&lt;BR /&gt;Shong</description>
      <pubDate>Thu, 14 Oct 2010 08:35:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196599#M684</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-10-14T08:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196600#M685</link>
      <description>Hi,
&lt;BR /&gt;This one works great, thank you very much Shong.
&lt;BR /&gt;Best Regards
&lt;BR /&gt;Bahadir</description>
      <pubDate>Sat, 16 Oct 2010 01:41:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196600#M685</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-10-16T01:41:42Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196601#M686</link>
      <description>Hi there -
&lt;BR /&gt;I have a csv file in which a particular column (address column) has a text value that contains a comma (e.g. "2000 Redwood Shores, Redwood city, CA"). I want to be able to read this entire value as one value and not be split because there are commas in the value
&lt;BR /&gt;To do this, I set the csv options for reading this file in tFileInputDelimited as follows:
&lt;BR /&gt;Row Separator: "\n"
&lt;BR /&gt;Field Separator: ","
&lt;BR /&gt;Escape Char: ""
&lt;BR /&gt;Text enclosure: """
&lt;BR /&gt;But unfortunately, the tool still considers the comma in the value as a field separator and returns the following as three separate fields:
&lt;BR /&gt;2000 Redwood Shores
&lt;BR /&gt;Redwood city
&lt;BR /&gt;CA
&lt;BR /&gt;Can you please throw some light on this
&lt;BR /&gt;Thanks
&lt;BR /&gt;Sri</description>
      <pubDate>Mon, 07 Mar 2011 05:50:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196601#M686</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2011-03-07T05:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196602#M687</link>
      <description>Hi Sri
&lt;BR /&gt;Try 
&lt;BR /&gt;Escape Char: "\""
&lt;BR /&gt;Text enclosure: "\""
&lt;BR /&gt;If it still don't work, please show us an example of file.
&lt;BR /&gt;Best regards
&lt;BR /&gt;Shong</description>
      <pubDate>Mon, 07 Mar 2011 08:16:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196602#M687</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-03-07T08:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196603#M688</link>
      <description>&lt;BLOCKQUOTE&gt;
 &lt;TABLE border="1"&gt;
  &lt;TBODY&gt;
   &lt;TR&gt;
    &lt;TD&gt;Hi Sri&lt;BR /&gt;Try &lt;BR /&gt;Escape Char: "\""&lt;BR /&gt;Text enclosure: "\""&lt;BR /&gt;If it still don't work, please show us an example of file.&lt;BR /&gt;Best regards&lt;BR /&gt;Shong&lt;/TD&gt;
   &lt;/TR&gt;
  &lt;/TBODY&gt;
 &lt;/TABLE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BR /&gt;Hi Shong,
&lt;BR /&gt;I had the same issue, in fact only keeping Text enclosure: "\"" is required.
&lt;BR /&gt;The selection of Escape Char seems to be immaterial. 
&lt;BR /&gt;So just wanted to know in which scenario so we use the escape char?
&lt;BR /&gt;Regards,
&lt;BR /&gt;Diwakar
&lt;BR /&gt;Infocepts India</description>
      <pubDate>Fri, 19 Aug 2011 14:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196603#M688</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-19T14:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196604#M689</link>
      <description>Hi,
&lt;BR /&gt;I have same scenario,
&lt;BR /&gt;
&lt;B&gt;Input Row&lt;/B&gt;
&lt;BR /&gt;1\t"Max"\t"The \" Moon"\t"Sky"
&lt;BR /&gt;
&lt;B&gt;Output Row Should be&lt;/B&gt;
&lt;BR /&gt;
&lt;FONT size="2"&gt;1 |&amp;nbsp;&lt;/FONT&gt;
&lt;FONT size="2"&gt;Max |&amp;nbsp;The " Moon | Sky&lt;BR /&gt;&lt;/FONT&gt;
&lt;BR /&gt;I am using Field Separator "\t" , Text enclosure as """ and Escape char as "\"".But its still not working.
&lt;BR /&gt;What should i use???</description>
      <pubDate>Tue, 14 Apr 2015 09:09:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196604#M689</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-14T09:09:03Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Escape character in csv</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196605#M690</link>
      <description>&lt;P&gt;thanks in advance,&lt;/P&gt;&lt;P&gt;i have a column value in csv file like "CTH#RIO" for this i want to split this value lke&amp;nbsp;CTH and RIO &amp;nbsp;and join with another table from mysql database using tmap component , how can i doo this job&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;</description>
      <pubDate>Sat, 26 May 2018 06:24:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Escape-character-in-csv/m-p/2196605#M690</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-26T06:24:40Z</dc:date>
    </item>
  </channel>
</rss>

