<?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: Extract part of the string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912041#M316506</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. all are working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Jul 2015 14:30:22 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-07-23T14:30:22Z</dc:date>
    <item>
      <title>Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912037#M316502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Field contains the values with '&amp;amp;'. This '&amp;amp;' could be anywhere in the string, but I want to extract the string between last and second last '&amp;amp;'&lt;/P&gt;&lt;P&gt;for eg. I have string like abc&amp;amp;xyz&amp;amp;pqr&amp;amp;ghi&lt;/P&gt;&lt;P&gt;I want the value pqr&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 13:57:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912037#M316502</guid>
      <dc:creator />
      <dc:date>2015-07-23T13:57:53Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912038#M316503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= mid(Field, Index(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Field&lt;/SPAN&gt;,'&amp;amp;',-2)+1, Index(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Field&lt;/SPAN&gt;,'&amp;amp;',-1) -(Index(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Field&lt;/SPAN&gt;,'&amp;amp;',-2)+1))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:00:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912038#M316503</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-23T14:00:42Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912039#M316504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=SubField('abc&amp;amp;xyz&amp;amp;pqr&amp;amp;ghi', '&amp;amp;', Index(KeepChar('abc&amp;amp;xyz&amp;amp;pqr&amp;amp;ghi', '&amp;amp;'), '&amp;amp;', -1))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output is &lt;STRONG&gt;pqr&lt;/STRONG&gt; here&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912039#M316504</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-23T14:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912040#M316505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;('abc&amp;amp;xyz&amp;amp;pqr&amp;amp;ghi','&amp;amp;',-2)&amp;nbsp; -&amp;gt;&amp;nbsp; pqr&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:16:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912040#M316505</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2015-07-23T14:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912041#M316506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks. all are working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:30:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912041#M316506</guid>
      <dc:creator />
      <dc:date>2015-07-23T14:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912042#M316507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree all solution are working, but I would suggest using &lt;A _jive_internal="true" href="https://community.qlik.com/people/AntonioTiman"&gt;ANTONIO&lt;/A&gt;‌'s solution as it is the most straight forward of the three.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 14:33:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912042#M316507</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-23T14:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extract part of the string</title>
      <link>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912043#M316508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even I agree with &lt;A href="https://community.qlik.com/qlik-users/171708"&gt;sunindia&lt;/A&gt; , use &lt;A href="https://community.qlik.com/qlik-users/69783"&gt;AntonioTiman&lt;/A&gt; solution&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jul 2015 18:41:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Extract-part-of-the-string/m-p/912043#M316508</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2015-07-23T18:41:32Z</dc:date>
    </item>
  </channel>
</rss>

