<?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: REGEX Lookbehind in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287346#M60947</link>
    <description>&lt;P&gt;Thank you for the reply; love the avatar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you are suggesting I use something like&lt;/P&gt;&lt;PRE&gt;(myvalue:[0-9]*)&lt;/PRE&gt;&lt;P&gt;then use a tJavasomething to substring it?&lt;/P&gt;</description>
    <pubDate>Thu, 19 Apr 2018 21:29:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-04-19T21:29:30Z</dc:date>
    <item>
      <title>REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287344#M60945</link>
      <description>&lt;P&gt;I am using a regex,&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;(?&amp;lt;=myvalue:)[0-9]*&lt;/PRE&gt; 
&lt;P&gt;to match a number after "myvalue:", the data looks like "myvalue:42", and I need the 42. This works in most regex engines, but I'm having trouble getting it to match in Talend. Please advise.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 15:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287344#M60945</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-19T15:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287345#M60946</link>
      <description>&lt;P&gt;Why not substring?&lt;/P&gt;&lt;PRE&gt;String s = "myvalue:42";
System.out.println(s.substring(s.indexOf(":") + 1));&lt;/PRE&gt;</description>
      <pubDate>Thu, 19 Apr 2018 21:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287345#M60946</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-19T21:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287346#M60947</link>
      <description>&lt;P&gt;Thank you for the reply; love the avatar.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So you are suggesting I use something like&lt;/P&gt;&lt;PRE&gt;(myvalue:[0-9]*)&lt;/PRE&gt;&lt;P&gt;then use a tJavasomething to substring it?&lt;/P&gt;</description>
      <pubDate>Thu, 19 Apr 2018 21:29:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287346#M60947</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-19T21:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287347#M60948</link>
      <description>&lt;P&gt;bump&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 17:20:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287347#M60948</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-20T17:20:04Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287348#M60949</link>
      <description>&lt;P&gt;This one should also work:&lt;/P&gt;
&lt;PRE&gt;row1.myField.replaceAll("^.*:", "")&lt;/PRE&gt;
&lt;P&gt;and if you expect the result as an Integer:&lt;/P&gt;
&lt;PRE&gt;Integer.parseInt(row1.myField.replaceAll("^.*:", ""))&lt;/PRE&gt;
&lt;P&gt;This may appear in a tMap expression or in any place where you're able to enter a piece of Java code.&lt;/P&gt;
&lt;P&gt;Hope this helps.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Apr 2018 18:01:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287348#M60949</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-04-21T18:01:50Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287349#M60950</link>
      <description>Did this help you?&lt;BR /&gt;If so, thank's to mark your case as solved (Kudo also accepted).</description>
      <pubDate>Sun, 22 Apr 2018 07:53:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287349#M60950</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2018-04-22T07:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX Lookbehind</title>
      <link>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287350#M60951</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt;, thank you for the suggestion. I will test and get back to you.&lt;/P&gt; 
&lt;BLOCKQUOTE&gt; 
 &lt;HR /&gt; 
 &lt;A href="https://community.qlik.com/s/profile/0053p000007LKj7AAG"&gt;@TRF&lt;/A&gt;wrote: 
 &lt;BR /&gt; 
 &lt;P&gt;This one should also work:&lt;/P&gt; 
 &lt;PRE&gt;row1.myField.replaceAll("^.*:", "")&lt;/PRE&gt; 
 &lt;P&gt;and if you expect the result as an Integer:&lt;/P&gt; 
 &lt;PRE&gt;Integer.parseInt(row1.myField.replaceAll("^.*:", ""))&lt;/PRE&gt; 
 &lt;P&gt;This may appear in a tMap expression or in any place where you're able to enter a piece of Java code.&lt;/P&gt; 
 &lt;P&gt;Hope this helps.&amp;nbsp;&lt;/P&gt; 
 &lt;HR /&gt; 
&lt;/BLOCKQUOTE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 15:14:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/REGEX-Lookbehind/m-p/2287350#M60951</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-23T15:14:06Z</dc:date>
    </item>
  </channel>
</rss>

