<?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: Reverse a String in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300342#M72579</link>
    <description>Thanks, I've got this routine but since I'm new to talend I just need a clue on how to apply it and encode it in a tmap function on an incoming string.</description>
    <pubDate>Fri, 05 Aug 2011 09:24:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2011-08-05T09:24:43Z</dc:date>
    <item>
      <title>Reverse a String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300340#M72577</link>
      <description>Anyone know the best way in Talend to reverse order a string ?&lt;BR /&gt;i.e.&lt;BR /&gt;ABCD to DCBA   &lt;BR /&gt;Thanks</description>
      <pubDate>Sat, 16 Nov 2024 12:45:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300340#M72577</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse a String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300341#M72578</link>
      <description>I use this routine
&lt;BR /&gt; /**
&lt;BR /&gt; * reverseIt() Reverses a string.
&lt;BR /&gt; * 
&lt;BR /&gt; * {talendTypes} String
&lt;BR /&gt; * 
&lt;BR /&gt; * {Category} Ncl_routines
&lt;BR /&gt; * 
&lt;BR /&gt; * {param} string ("fred") input: the string to be reversed
&lt;BR /&gt; * 
&lt;BR /&gt; * {example} reverseIt("fred") # derf
&lt;BR /&gt; * 
&lt;BR /&gt; */ 
&lt;BR /&gt; public static String reverseIt(String source) {
&lt;BR /&gt; int i, len = source.length();
&lt;BR /&gt; StringBuffer dest = new StringBuffer(len);
&lt;BR /&gt; for (i = (len - 1); i &amp;gt;= 0; i--)
&lt;BR /&gt; dest.append(source.charAt(i));
&lt;BR /&gt; return dest.toString();
&lt;BR /&gt; }</description>
      <pubDate>Fri, 05 Aug 2011 09:11:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300341#M72578</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2011-08-05T09:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse a String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300342#M72579</link>
      <description>Thanks, I've got this routine but since I'm new to talend I just need a clue on how to apply it and encode it in a tmap function on an incoming string.</description>
      <pubDate>Fri, 05 Aug 2011 09:24:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300342#M72579</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2011-08-05T09:24:43Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse a String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300343#M72580</link>
      <description>Under Code create new routine and add the code then use it as you would Talend routines.</description>
      <pubDate>Fri, 05 Aug 2011 09:28:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300343#M72580</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2011-08-05T09:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Reverse a String</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300344#M72581</link>
      <description>&lt;P&gt;String reverse="";&lt;BR /&gt;for(int i=input_row.ReverseString.length()-1 ; i &amp;gt;= 0 ; i--)&lt;BR /&gt;{&lt;BR /&gt;reverse=reverse+input_row.ReverseString.charAt(i);&lt;BR /&gt;}&lt;BR /&gt;output_row.ReverseString=reverse;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;write this code in tjavarow&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 16 Sep 2019 12:26:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Reverse-a-String/m-p/2300344#M72581</guid>
      <dc:creator>Ayush3</dc:creator>
      <dc:date>2019-09-16T12:26:48Z</dc:date>
    </item>
  </channel>
</rss>

