<?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: Isolate and extract numeric values from a string and convert to int in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204264#M5223</link>
    <description>&lt;P&gt;According to 29.9% of study participants, Burger King does actually serve the messiest burger. The same fast food restaurant brand, according to Mashed readers, offers the worst fish sandwiches and maintains the worst amenities of any fast food shop (messiness, in the latter case, being a decidedly undesirable trait). With 20.62% of the vote, McDonald's, which our readers thought served the worst burgers while selling "billions and billions," landed in second place for sloppy burgers. Burger King came in second in the survey. &lt;A href="https://krogerstoresfeedback.org/" alt="https://krogerstoresfeedback.org/" target="_blank"&gt;krogerstoresfeedback&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2022 10:41:49 GMT</pubDate>
    <dc:creator>gmobile1664879803</dc:creator>
    <dc:date>2022-10-04T10:41:49Z</dc:date>
    <item>
      <title>Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204250#M5209</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a string that can take the following forms:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"1"&lt;/P&gt;&lt;P&gt;"23"&lt;/P&gt;&lt;P&gt;"1 abcdef"&lt;/P&gt;&lt;P&gt;"23 abcdf"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to extract the numerical value from the string and then convert it to an int data type (as specified in output DB).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using the&amp;nbsp;Integer.parseInt, but the job fails since the string contains non-numerical values as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone please advise me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&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:15:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204250#M5209</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T03:15:06Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204251#M5210</link>
      <description>&lt;P&gt;Did you try with the following regex to remove every &lt;SPAN&gt;non-digit&amp;nbsp;&lt;/SPAN&gt;characters?&lt;/P&gt;
&lt;PRE&gt;row1.yourField.replaceAll("\D", "")&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 12:45:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204251#M5210</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-02-17T12:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204252#M5211</link>
      <description>&lt;P&gt;Thanks for your advise TRF. I overlooked one issue: The string can also take this form:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"1 abcdef 234"&lt;/P&gt;
&lt;P&gt;"23 abcdef 567"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I only want to extract the first numbers(1 and 23). If I go head with the mentioned regex I will still be stuck with the digit-characters I don't want.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 13:18:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204252#M5211</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-17T13:18:36Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204253#M5212</link>
      <description>If you know the value you want to extract is placed at the beginning, use this one:&lt;BR /&gt;row1.yourField.replaceAll(" .*$", "")</description>
      <pubDate>Mon, 17 Feb 2020 13:31:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204253#M5212</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2020-02-17T13:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204254#M5213</link>
      <description>&lt;P&gt;I tried this but its not working. my string is like this "abc 20mbps"&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 06:28:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204254#M5213</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T06:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204255#M5214</link>
      <description>Check the below expression. 
&lt;BR /&gt;row2.column==null?"":row2.column.replaceAll( "[^\\d]", "" )</description>
      <pubDate>Thu, 09 Apr 2020 07:09:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204255#M5214</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2020-04-09T07:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204256#M5215</link>
      <description>&lt;P&gt;Thanks its works . If i have to extract mbps from the string "abc 20mbps" , how to do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 07:36:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204256#M5215</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T07:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204257#M5216</link>
      <description>You need to extract 20mbps from that string?</description>
      <pubDate>Thu, 09 Apr 2020 07:52:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204257#M5216</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2020-04-09T07:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204258#M5217</link>
      <description>&lt;P&gt;&lt;U&gt;We want to create a date variable in numeric format based on this string variable&amp;nbsp;&lt;A href="https://www.mcdvoice.onl/" target="_blank" rel="nofollow noopener noreferrer"&gt;&lt;FONT color="#333333"&gt;mcdvoice&lt;/FONT&gt;&lt;/A&gt;&lt;FONT color="#333333"&gt;.&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 09:08:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204258#M5217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T09:08:31Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204259#M5218</link>
      <description>&lt;P&gt;no, only mbps....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 13:45:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204259#M5218</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-09T13:45:16Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204260#M5219</link>
      <description>&lt;P&gt;Yes, according to 29.9% of those who responded to our study, Burger King serves the messiest burger. The chain is the same one where, according to readers of Mashed, you can also find the worst fish sandwiches and the grossest lavatories in the entire fast food industry (messiness, in the latter case, being a decidedly undesirable trait). With 20.62% of the vote, McDonald's takes second place in the messy burger category. Despite selling "billions and billions" of burgers, our readers believe that McDonald's serves the worst burgers. (Burger King placed second in that poll.) &lt;A href="https://mcdvoiceu.com/" alt="https://mcdvoiceu.com/" target="_blank"&gt;mcdvoice&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 10:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204260#M5219</guid>
      <dc:creator>gmobile1664879803</dc:creator>
      <dc:date>2022-10-04T10:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204261#M5220</link>
      <description>&lt;P&gt;Burger King is indeed the messiest burger, according to 29.9% of the people who responded to our study. The worst fish sandwiches and grossest facilities in all of fast food may be found at the same chain, according to readers of Mashed (messiness, in the latter case, being a decidedly undesirable trait). McDonald's, which our readers deemed to serve the worst burgers despite selling "billions and billions," came in second place in the sloppy burger category with 20.62% of the vote. (In that vote, Burger King finished in second place.) &lt;A href="https://idgcustomerfirst.org/" alt="https://idgcustomerfirst.org/" target="_blank"&gt;dgcustomerfirst&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 10:40:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204261#M5220</guid>
      <dc:creator>gmobile1664879803</dc:creator>
      <dc:date>2022-10-04T10:40:08Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204262#M5221</link>
      <description>&lt;P&gt;According to 29.9% of the participants in our study, Burger King does serve the messiest burger. Readers of Mashed have said that the same fast food chain has the worst fish sandwiches and the dirtiest facilities in all of fast food (messiness, in the latter case, being a decidedly undesirable trait). With 20.62% of the vote, McDonald's, which our readers thought served the worst burgers despite selling "billions and billions," landed in second place for sloppy burgers. Burger King came in second place in that vote. &lt;A href="https://tellthebellu.com/" alt="https://tellthebellu.com/" target="_blank"&gt;tellthebell&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 10:40:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204262#M5221</guid>
      <dc:creator>gmobile1664879803</dc:creator>
      <dc:date>2022-10-04T10:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204263#M5222</link>
      <description>&lt;P&gt;Burger King does indeed serve the messiest burger, according to 29.9% of study participants. According to Mashed readers, the same fast food restaurant chain serves the worst fish sandwiches and maintains the poorest facilities of any fast food outlet (messiness, in the latter case, being a decidedly undesirable trait). McDonald's, which our readers believed provided the worst burgers while selling "billions and billions," came in second for sloppy burgers with 20.62% of the vote. In that poll, Burger King came in second place. &lt;A href="https://talktowendysu.com/" alt="https://talktowendysu.com/" target="_blank"&gt;talktowendys&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 10:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204263#M5222</guid>
      <dc:creator>gmobile1664879803</dc:creator>
      <dc:date>2022-10-04T10:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Isolate and extract numeric values from a string and convert to int</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204264#M5223</link>
      <description>&lt;P&gt;According to 29.9% of study participants, Burger King does actually serve the messiest burger. The same fast food restaurant brand, according to Mashed readers, offers the worst fish sandwiches and maintains the worst amenities of any fast food shop (messiness, in the latter case, being a decidedly undesirable trait). With 20.62% of the vote, McDonald's, which our readers thought served the worst burgers while selling "billions and billions," landed in second place for sloppy burgers. Burger King came in second in the survey. &lt;A href="https://krogerstoresfeedback.org/" alt="https://krogerstoresfeedback.org/" target="_blank"&gt;krogerstoresfeedback&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 10:41:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Isolate-and-extract-numeric-values-from-a-string-and-convert-to/m-p/2204264#M5223</guid>
      <dc:creator>gmobile1664879803</dc:creator>
      <dc:date>2022-10-04T10:41:49Z</dc:date>
    </item>
  </channel>
</rss>

