<?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: Substring First ,Last Name from a FULL Name String in Talend in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260338#M41494</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;The solution almost work &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;So the pattern is 'LName' 'space' 'comma' 'space' 'Fname' 'space' 'Mintial' 'Space' 'Title'&lt;/P&gt; 
&lt;P&gt;FULL NAME STRING =&amp;nbsp; Test , Name M MD&lt;/P&gt; 
&lt;P&gt;output is coming as&amp;nbsp; 'Test , M MD'&lt;/P&gt; 
&lt;P&gt;should be&lt;/P&gt; 
&lt;PRE&gt;row1.InputString.split(" ")[0] + " " + row1.InputString.split(",")[1]???&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;But is not working &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;Thanks for all your help&lt;/P&gt;</description>
    <pubDate>Tue, 30 Jul 2019 16:38:55 GMT</pubDate>
    <dc:creator>NNYEZEL</dc:creator>
    <dc:date>2019-07-30T16:38:55Z</dc:date>
    <item>
      <title>Substring First ,Last Name from a FULL Name String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260336#M41492</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm new at Talend and I'm trying to do something very simple in&amp;nbsp; MYSql that I dont know how to do it here&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;I have a full neme as : "FName , LName MInitial Title"&lt;/P&gt;&lt;P&gt;I want to subtract just the Name and last name ignoring&amp;nbsp; the middel initial and the Title.&lt;/P&gt;&lt;P&gt;in sql is replace(SUBSTRING_INDEX (FULL_NAME,' ',2),',','') as NewName&lt;/P&gt;&lt;P&gt;Result : FName&amp;nbsp; LName&lt;/P&gt;&lt;P&gt;How I can achieve that?&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:07:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260336#M41492</guid>
      <dc:creator>NNYEZEL</dc:creator>
      <dc:date>2024-11-16T05:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Substring First ,Last Name from a FULL Name String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260337#M41493</link>
      <description>&lt;P&gt;Hello NNYEZEL,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;assuming that there is a blank before and after the comma, you can split the whole string at the blanks&lt;/P&gt;&lt;P&gt;and use the first and third result of the split. (The second would be the comma.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;row1.InputString.split(" ")[0] + " " + row1.InputString.split(" ")[2]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 12:35:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260337#M41493</guid>
      <dc:creator>ThWabi</dc:creator>
      <dc:date>2019-07-30T12:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: Substring First ,Last Name from a FULL Name String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260338#M41494</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;The solution almost work &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;So the pattern is 'LName' 'space' 'comma' 'space' 'Fname' 'space' 'Mintial' 'Space' 'Title'&lt;/P&gt; 
&lt;P&gt;FULL NAME STRING =&amp;nbsp; Test , Name M MD&lt;/P&gt; 
&lt;P&gt;output is coming as&amp;nbsp; 'Test , M MD'&lt;/P&gt; 
&lt;P&gt;should be&lt;/P&gt; 
&lt;PRE&gt;row1.InputString.split(" ")[0] + " " + row1.InputString.split(",")[1]???&lt;/PRE&gt; 
&lt;P&gt;&amp;nbsp;But is not working &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MPcz.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/157233iD1A564EF62DE3BC2/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MPcz.png" alt="0683p000009MPcz.png" /&gt;&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;Thanks for all your help&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 16:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260338#M41494</guid>
      <dc:creator>NNYEZEL</dc:creator>
      <dc:date>2019-07-30T16:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Substring First ,Last Name from a FULL Name String in Talend</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260339#M41495</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Finally Works.. It take me a minute but is doing what I need...&lt;/P&gt;&lt;P&gt;Thank you for your help&lt;/P&gt;&lt;P&gt;row4.Name.split(",")[0] + " " + row4.Name.split(" ")[+1]&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 21:17:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Substring-First-Last-Name-from-a-FULL-Name-String-in-Talend/m-p/2260339#M41495</guid>
      <dc:creator>NNYEZEL</dc:creator>
      <dc:date>2019-07-30T21:17:12Z</dc:date>
    </item>
  </channel>
</rss>

