<?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: Talend-Java string manipulation for Find or Search in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288003#M61523</link>
    <description>Define the columns in a tFileInputDelimited. Use this for the input to the tMap and in the output field have the rule first + " " + last</description>
    <pubDate>Tue, 15 Dec 2009 10:29:29 GMT</pubDate>
    <dc:creator>janhess</dc:creator>
    <dc:date>2009-12-15T10:29:29Z</dc:date>
    <item>
      <title>Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288000#M61520</link>
      <description>Wondering how i can go about manipulating a text string in tmap. In Microsoft Excel, i was able to do the following functions:
&lt;BR /&gt;Source: last, first (the goal is to put it in the proper format without the blank spaces.
&lt;BR /&gt; A B C D 
&lt;BR /&gt;1 Source Data Field length search for "," Correct Format
&lt;BR /&gt;2 last, first 21 10 first last
&lt;BR /&gt; =LEN(A2) =SEARCH(",",A2) =TRIM(RIGHT(A2,LEN(A2)-SEARCH(",",A2))&amp;amp;" "&amp;amp;LEFT(A2,C2-1))
&lt;BR /&gt;
&lt;BR /&gt;Does anybody have any suggestion on how i can write this formula in the Talend tmap expression? What is the Java string expression for (Find or Search)? Thanks! abbig</description>
      <pubDate>Sat, 16 Nov 2024 13:38:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288000#M61520</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288001#M61521</link>
      <description>What is the real format of the data? Is it a text file with delimited fields?</description>
      <pubDate>Tue, 15 Dec 2009 09:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288001#M61521</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2009-12-15T09:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288002#M61522</link>
      <description>The file is in a comma delimited format, but my question is regarding 1 field. The contact names are usually (lastname, firstname), but i want to manipulate the field using tmap properties when i map the fields to the output table in format of (firstname lastname).</description>
      <pubDate>Tue, 15 Dec 2009 09:53:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288002#M61522</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-15T09:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288003#M61523</link>
      <description>Define the columns in a tFileInputDelimited. Use this for the input to the tMap and in the output field have the rule first + " " + last</description>
      <pubDate>Tue, 15 Dec 2009 10:29:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288003#M61523</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2009-12-15T10:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288004#M61524</link>
      <description>This will not help to solve the problem i am having in switching the names around, because they come in the same field and they space delimited. Do you know if there is an equivalent command in Java/Talend for the "FIND" and "SEARCH" commands in Microsoft Excel?"  Thanks!</description>
      <pubDate>Thu, 31 Dec 2009 11:04:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288004#M61524</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-12-31T11:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288005#M61525</link>
      <description>Can anyone help me with the expression to parse or split a field(CONTACT) in a table in the tMap environment and to join said field back together in the correct format? (the input file is tab-delimited) 
&lt;BR /&gt;Example: LASTNAME FIRSTNAME (the names have about 4 spaces between them) 
&lt;BR /&gt; Brown John 
&lt;BR /&gt; Smith Mike 
&lt;BR /&gt;Correct Formant: John Brown 
&lt;BR /&gt; Mike Smith 
&lt;BR /&gt; 
&lt;BR /&gt;Thanks!</description>
      <pubDate>Mon, 04 Jan 2010 10:25:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288005#M61525</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-01-04T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288006#M61526</link>
      <description>Look for Java string functions on Google. 
&lt;BR /&gt;or you can use Talend string handling functions such as StringHandling.LEFT(row2.mailbox, row2.mailbox.indexOf("@")) to get the name from an email address. Use LEN and RIGHT to get the part after the "@". 
&lt;BR /&gt;or you could use tExtractDelimitedFields on the field.</description>
      <pubDate>Mon, 04 Jan 2010 16:05:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288006#M61526</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2010-01-04T16:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288007#M61527</link>
      <description>This doesnt work on my project
&lt;BR /&gt;Win7 64bit
&lt;BR /&gt;StringHandling.LEFT(row2.mailbox, row2.mailbox.indexOf("@"))</description>
      <pubDate>Tue, 14 Feb 2012 12:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288007#M61527</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-02-14T12:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288008#M61528</link>
      <description>Why not?</description>
      <pubDate>Tue, 14 Feb 2012 14:42:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288008#M61528</guid>
      <dc:creator>janhess</dc:creator>
      <dc:date>2012-02-14T14:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288009#M61529</link>
      <description>&lt;BLOCKQUOTE&gt; 
 &lt;TABLE border="1"&gt; 
  &lt;TBODY&gt; 
   &lt;TR&gt; 
    &lt;TD&gt;Look for Java string functions on Google.&lt;BR /&gt;or you can use Talend string handling functions such as StringHandling.LEFT(row2.mailbox, row2.mailbox.indexOf("@")) to get the name from an email address. Use LEN and RIGHT to get the part after the "@".&lt;BR /&gt;or you could use tExtractDelimitedFields on the field.&lt;/TD&gt; 
   &lt;/TR&gt; 
  &lt;/TBODY&gt; 
 &lt;/TABLE&gt; 
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 04 Oct 2013 12:33:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288009#M61529</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2013-10-04T12:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288010#M61530</link>
      <description>how to achieve string handling for right trim . 
&lt;BR /&gt;example ---&amp;gt; Laks:ram 
&lt;BR /&gt;result ---&amp;gt; ram 
&lt;BR /&gt;I want to fetch characters after ":"</description>
      <pubDate>Fri, 03 Jun 2016 13:21:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288010#M61530</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-06-03T13:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288011#M61531</link>
      <description>Hi Laks, I am not sure right trim is the best way to describe this. Basically, what you want to use is the code below (assuming the row is "row1" and the column is "myValue"....&lt;BR /&gt;&lt;PRE&gt;row1.myValue.substring(row1.myValue.indexOf(":")+1) &lt;/PRE&gt;&lt;BR /&gt;This uses the Java String "substring" method and "indexOf" method. We find the position in the String of the ":" char with the "indexOf" method, add 1 to it and use that position to start from with the "substring" method.</description>
      <pubDate>Fri, 03 Jun 2016 13:45:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288011#M61531</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-03T13:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Talend-Java string manipulation for Find or Search</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288012#M61532</link>
      <description>Thanks Rhall, It is working perfectly , thanks for the prompt response.</description>
      <pubDate>Fri, 03 Jun 2016 14:19:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Talend-Java-string-manipulation-for-Find-or-Search/m-p/2288012#M61532</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2016-06-03T14:19:11Z</dc:date>
    </item>
  </channel>
</rss>

