<?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: how add double quotation to a column? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357230#M122579</link>
    <description>&lt;P&gt;Nice but what about the double quote inside a string? Will it be escaped?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside the csv I need this pattern e.g.&amp;nbsp; &amp;nbsp; wheel size 24"" that the parser is able to convert it into:&amp;nbsp;&lt;SPAN&gt;wheel size 24"&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Apr 2018 13:41:16 GMT</pubDate>
    <dc:creator>pawe84</dc:creator>
    <dc:date>2018-04-10T13:41:16Z</dc:date>
    <item>
      <title>how add double quotation to a column?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357227#M122576</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to add double quotation to a column which will be exported into a csv.&lt;/P&gt;&lt;P&gt;I just saw that the component tFileOutDelimited has an option for text enclosure but there I can't&lt;/P&gt;&lt;P&gt;select the right column it will put double quotes on all my column values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let's say the column is called product description.&lt;/P&gt;&lt;P&gt;The string is something like: abc wheel size 16"&lt;/P&gt;&lt;P&gt;Which component do I need that the csv will show "abc wheel 16" "?&lt;/P&gt;&lt;P&gt;Do I have to replace the double quote on 16 inside the string&amp;nbsp; so that a csv parser is able to know that this is not the end of the string?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any tips.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2018 08:19:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357227#M122576</guid>
      <dc:creator>pawe84</dc:creator>
      <dc:date>2018-04-10T08:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: how add double quotation to a column?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357228#M122577</link>
      <description>Hi 
&lt;BR /&gt;If you just want to add double quote to one column, do it on tJavaRow or tMap, eg:
&lt;BR /&gt;tfileinputDelimited--tJavaRow--tFileOutputDelimited
&lt;BR /&gt;...other columns...
&lt;BR /&gt;output_row.columnName="\""+input_row.columnName+"\"";
&lt;BR /&gt;
&lt;BR /&gt;Regards
&lt;BR /&gt;Shong
&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Apr 2018 09:11:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357228#M122577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-10T09:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: how add double quotation to a column?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357229#M122578</link>
      <description>&lt;P&gt;Hi pawe84,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We can use&amp;nbsp;StringHandling.DQUOTE("Hello") function in talend to put double quotation for a string.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2018 09:37:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357229#M122578</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-10T09:37:31Z</dc:date>
    </item>
    <item>
      <title>Re: how add double quotation to a column?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357230#M122579</link>
      <description>&lt;P&gt;Nice but what about the double quote inside a string? Will it be escaped?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inside the csv I need this pattern e.g.&amp;nbsp; &amp;nbsp; wheel size 24"" that the parser is able to convert it into:&amp;nbsp;&lt;SPAN&gt;wheel size 24"&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Apr 2018 13:41:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357230#M122579</guid>
      <dc:creator>pawe84</dc:creator>
      <dc:date>2018-04-10T13:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: how add double quotation to a column?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357231#M122580</link>
      <description>&lt;P&gt;I took this as an example:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;ID,NAME,DESCR&lt;BR /&gt;1,TITU,Titu wheel size 16"&lt;BR /&gt;&lt;BR /&gt;and pass this to tFileOutputDelimited as FilName.csv with field separator ",".&lt;BR /&gt;After running the job, it will show the record as it is (TITU,Titu wheel size 16") with double quotes at the end.&lt;BR /&gt;No need to use CSV option in AdvanceSettings.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2018 11:56:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/how-add-double-quotation-to-a-column/m-p/2357231#M122580</guid>
      <dc:creator>mks02</dc:creator>
      <dc:date>2018-04-11T11:56:32Z</dc:date>
    </item>
  </channel>
</rss>

