<?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 to combine/concatenate 3 string fields and create a new field in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214286#M11199</link>
    <description>&lt;P&gt;if you need output string with double quotes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"\"fullname\" : {\"given\" : \""&amp;nbsp;&lt;/P&gt;&lt;P&gt;+ row1.firstname +&lt;/P&gt;&lt;P&gt;"\", \"middle\" : \""&lt;/P&gt;&lt;P&gt;+&amp;nbsp; row1.middle +&lt;/P&gt;&lt;P&gt;"\", \"family\" : \""&lt;/P&gt;&lt;P&gt;+ row1.lastname +&lt;/P&gt;&lt;P&gt;"\" }"&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2019 22:03:56 GMT</pubDate>
    <dc:creator>akumar2301</dc:creator>
    <dc:date>2019-03-04T22:03:56Z</dc:date>
    <item>
      <title>How to combine/concatenate 3 string fields and create a new field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214284#M11197</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am new to Talend and I have requirement to create a new field in output easticsearch database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My input has first name, lastname and middlename which are of string type.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And I want to concatenate these 3 fields and generate a new field in&lt;/P&gt;
&lt;P&gt;output easticsearch database.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to get output like&amp;nbsp;"fullname" : { "given" : "&amp;lt;source.firstname&amp;gt;", "middle" : "&amp;lt;source.middle&amp;gt;", "family" : "&amp;lt;source.lastname&amp;gt;" }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;can some one help me how to do that in TMAP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:26:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214284#M11197</guid>
      <dc:creator>Bharath12</dc:creator>
      <dc:date>2024-11-16T06:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine/concatenate 3 string fields and create a new field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214285#M11198</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(row5.FirstName + " " +row5.MiddleName + " "+row5.LastName) .replaceAll("null","")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the bettter way to concatinate, Please give kudos and accept solution if it works&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 19:04:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214285#M11198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-04T19:04:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine/concatenate 3 string fields and create a new field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214286#M11199</link>
      <description>&lt;P&gt;if you need output string with double quotes&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"\"fullname\" : {\"given\" : \""&amp;nbsp;&lt;/P&gt;&lt;P&gt;+ row1.firstname +&lt;/P&gt;&lt;P&gt;"\", \"middle\" : \""&lt;/P&gt;&lt;P&gt;+&amp;nbsp; row1.middle +&lt;/P&gt;&lt;P&gt;"\", \"family\" : \""&lt;/P&gt;&lt;P&gt;+ row1.lastname +&lt;/P&gt;&lt;P&gt;"\" }"&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2019 22:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214286#M11199</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-03-04T22:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to combine/concatenate 3 string fields and create a new field</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214287#M11200</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LPDyAAO"&gt;@rchinta&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2019 17:43:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-combine-concatenate-3-string-fields-and-create-a-new/m-p/2214287#M11200</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-03-05T17:43:54Z</dc:date>
    </item>
  </channel>
</rss>

