<?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 Remove Character from the first to # in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261738#M42427</link>
    <description>&lt;P&gt;All,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have used SOAP to connect sharepoint list and stored the data in an XML file.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I can see some unwanted characters also combined with the actual data in around 15 columns, say for example&lt;/P&gt; 
&lt;P&gt;float;#1.00000000000000 -- Need to remove&lt;STRONG&gt;&amp;nbsp;float;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;2505;#Mark, Roy &lt;STRONG&gt;- &lt;/STRONG&gt;Need to remove&amp;nbsp;&lt;STRONG&gt;2505;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;3328;#Ingra, Valere -- Need to remove&amp;nbsp;&lt;STRONG&gt;3328;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;90;#0 -- Need to remove&amp;nbsp;90;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;what ever come before # and '#'&amp;nbsp; needs to be removed from those columns.&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 03:31:08 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T03:31:08Z</dc:date>
    <item>
      <title>Remove Character from the first to #</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261738#M42427</link>
      <description>&lt;P&gt;All,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have used SOAP to connect sharepoint list and stored the data in an XML file.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I can see some unwanted characters also combined with the actual data in around 15 columns, say for example&lt;/P&gt; 
&lt;P&gt;float;#1.00000000000000 -- Need to remove&lt;STRONG&gt;&amp;nbsp;float;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;2505;#Mark, Roy &lt;STRONG&gt;- &lt;/STRONG&gt;Need to remove&amp;nbsp;&lt;STRONG&gt;2505;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;3328;#Ingra, Valere -- Need to remove&amp;nbsp;&lt;STRONG&gt;3328;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;90;#0 -- Need to remove&amp;nbsp;90;#&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;STRONG&gt;what ever come before # and '#'&amp;nbsp; needs to be removed from those columns.&lt;/STRONG&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261738#M42427</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T03:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character from the first to #</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261739#M42428</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LQHTAA4"&gt;@Karthi-Talend&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;what I&amp;nbsp; could understand from&amp;nbsp; inline question is you want to remove all the characters before '#' from a column. I guess you can do that using substring() function.&lt;/P&gt; 
&lt;P&gt;Below is the sample code for the same:&lt;/P&gt; 
&lt;P&gt;String s = "float;#1.00000000000000";&lt;BR /&gt;System.out.println("String After Trimming Characters before # =&amp;nbsp; "+s.substring(s.indexOf('#')+1));&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;output ==&amp;gt;&lt;/P&gt; 
&lt;P&gt;String After Trimming Characters before # =&amp;nbsp;1.00000000000000&lt;/P&gt; 
&lt;P&gt;You can use the same function for any variable in tMap or tJavarow.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Jan 2020 05:55:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261739#M42428</guid>
      <dc:creator>kavita02</dc:creator>
      <dc:date>2020-01-21T05:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Remove Character from the first to #</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261740#M42429</link>
      <description>You may also use a simple regex such as&lt;BR /&gt;row1.col1.replaceAll("^.*#", "")</description>
      <pubDate>Tue, 21 Jan 2020 07:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Remove-Character-from-the-first-to/m-p/2261740#M42429</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-01-21T07:14:50Z</dc:date>
    </item>
  </channel>
</rss>

