<?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] Removing everything after a specified character in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296577#M69229</link>
    <description>Thanks guys...will test this in about an hour 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;will let you know how it goes...</description>
    <pubDate>Mon, 05 Oct 2015 02:32:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-10-05T02:32:00Z</dc:date>
    <item>
      <title>[resolved] Removing everything after a specified character</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296574#M69226</link>
      <description>&lt;P&gt;I am new to Talend and fairly new to anything JAVA/scripting related so would really appreciate your help.&lt;BR /&gt;I have a range of telephone numbers which I would like to clean up using the tMap component.&lt;BR /&gt;I have successfully managed to remove spaces etc, however in this field, my company has stored a lot of telephone extensions so typically the number would look like this:&amp;nbsp;&lt;BR /&gt;092081146x713&lt;BR /&gt;I would like to remove everything after the 'x' and then store the value after the 'x' in a variable and then populate the another column with the data after the 'x' so that the telephone extension is not lost when we migrate our systems next year.&lt;BR /&gt;Please help &lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Caz&lt;/P&gt;</description>
      <pubDate>Thu, 01 Oct 2015 05:38:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296574#M69226</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-01T05:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Removing everything after a specified character</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296575#M69227</link>
      <description>use tMap and str.substring(str.lastIndexOf("x") + 1)&amp;nbsp;?
&lt;BR /&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MGmW.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/137842i458A392C2964AC57/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MGmW.png" alt="0683p000009MGmW.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Thu, 01 Oct 2015 09:20:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296575#M69227</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-01T09:20:00Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Removing everything after a specified character</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296576#M69228</link>
      <description>Hi Caz,
&lt;BR /&gt;
&lt;BR /&gt;You could try this,It works
&lt;BR /&gt;
&lt;BR /&gt;For the phone number-
&lt;B&gt;row1.phone.split("x") [0]&amp;nbsp;&lt;/B&gt;
&lt;BR /&gt;For the phone extension-
&lt;B&gt;row1.phone.split("x") [1]&amp;nbsp;&lt;/B&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;Thanks,
&lt;BR /&gt;Regards,
&lt;BR /&gt;Avinash</description>
      <pubDate>Thu, 01 Oct 2015 15:32:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296576#M69228</guid>
      <dc:creator>avinashbasetty</dc:creator>
      <dc:date>2015-10-01T15:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Removing everything after a specified character</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296577#M69229</link>
      <description>Thanks guys...will test this in about an hour 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt; 
&lt;BR /&gt;will let you know how it goes...</description>
      <pubDate>Mon, 05 Oct 2015 02:32:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296577#M69229</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-05T02:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Removing everything after a specified character</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296578#M69230</link>
      <description>Thanks j1122, this worked like a charm 
&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009MACn.png"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/154443iC5B8CACEF3D12C6A/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009MACn.png" alt="0683p000009MACn.png" /&gt;&lt;/span&gt;</description>
      <pubDate>Mon, 05 Oct 2015 03:28:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Removing-everything-after-a-specified-character/m-p/2296578#M69230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-05T03:28:06Z</dc:date>
    </item>
  </channel>
</rss>

