<?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: Re: Search and find a string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617965#M227742</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Mar 2014 10:18:10 GMT</pubDate>
    <dc:creator>rustyfishbones</dc:creator>
    <dc:date>2014-03-10T10:18:10Z</dc:date>
    <item>
      <title>Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617959#M227736</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 a requirement to find a string from the data base and represne in a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data :&lt;/P&gt;&lt;P&gt;ABC1230&lt;/P&gt;&lt;P&gt;dfg ABC11 th&lt;/P&gt;&lt;P&gt;yur ABC435000 mm&lt;/P&gt;&lt;P&gt;kk ABC76859 ndf ght ii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to find the string Which start from ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expected Output:-&lt;/P&gt;&lt;P&gt;data&lt;/P&gt;&lt;P&gt;ABC1230&lt;/P&gt;&lt;P&gt;ABC11&lt;/P&gt;&lt;P&gt;ABC435000&lt;/P&gt;&lt;P&gt;ABC76859&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You help will be highly appriciated&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;BR /&gt;D J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 09:44:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617959#M227736</guid>
      <dc:creator />
      <dc:date>2014-03-10T09:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617960#M227737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KEEPCHAR(data,'ABC0123456789') AS Data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 09:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617960#M227737</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-10T09:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617961#M227738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is the working expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(Index(VAL,'ABC')&amp;gt;0, &lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Index(Mid(VAL, Index(VAL,'ABC')),' ') &amp;gt; 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Mid(VAL, Index(VAL,'ABC'), Index(Mid(VAL, Index(VAL,'ABC')),' ')),&lt;/P&gt;&lt;P&gt;&amp;nbsp; If(Index(Mid(VAL, Index(VAL,'ABC')),' ') = 0,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Mid(VAL, Index(VAL,'ABC')),&lt;/P&gt;&lt;P&gt;&amp;nbsp; '---'&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,'---'&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:02:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617961#M227738</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-03-10T10:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617962#M227739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRIM(PURGECHAR(data,'abcdefghijklmnopqrstuvwxyz')) as [New Data]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:05:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617962#M227739</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-10T10:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617963#M227740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;KeepChar is not working because it will return all the character in that string .&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;D J&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:09:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617963#M227740</guid>
      <dc:creator />
      <dc:date>2014-03-10T10:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617964#M227741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Input:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load SubField(data, ' ')&amp;nbsp; as NewData From &amp;lt;&amp;gt;;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Output:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NewData&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Resident Input Where WildMatch(NewData, 'ABC*') ;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Drop table Input;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:14:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617964#M227741</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2014-03-10T10:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617965#M227742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See attached&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:18:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617965#M227742</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-10T10:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Search and find a string</title>
      <link>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617966#M227743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2014-03-10_1018.png" class="jive-image" src="https://community.qlik.com/legacyfs/online/54620_2014-03-10_1018.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Mar 2014 10:19:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Search-and-find-a-string/m-p/617966#M227743</guid>
      <dc:creator>rustyfishbones</dc:creator>
      <dc:date>2014-03-10T10:19:34Z</dc:date>
    </item>
  </channel>
</rss>

