<?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: Substring in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217863#M872842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;Index(String1,String2,&lt;N&gt;)&lt;/N&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Index&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;('abcdefg','cdefg')&amp;nbsp;&amp;nbsp; -&amp;gt; 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;see&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Nov 2016 08:18:21 GMT</pubDate>
    <dc:creator>antoniotiman</dc:creator>
    <dc:date>2016-11-09T08:18:21Z</dc:date>
    <item>
      <title>Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217857#M872836</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;How to search a substring is present or not in a given string besides using wildmatch function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217857#M872836</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217858#M872837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satej,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use &lt;STRONG&gt;Like &lt;/STRONG&gt;function as an alternate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If( Field Like '*Substring*',1,0)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also use Index function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(Index( Field, '&lt;SPAN style="font-size: 13.3333px;"&gt;Substring&lt;/SPAN&gt;' ),1,0)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 06:10:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217858#M872837</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-09T06:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217859#M872838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or,&lt;/P&gt;&lt;P&gt;Substringcount()&amp;nbsp; , like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;&lt;STRONG&gt;substringcount&lt;/STRONG&gt;(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; text , substring&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Returns the number of times the string substring appears within the string text. The result is an integer. If there is no match, 0 is returned&lt;/P&gt;
&lt;P class="example"&gt;Example:&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="Code"&gt;substringcount ( 'abcdefgcdxyz', 'cd' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;2&lt;/SPAN&gt;&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I.e. -&lt;SPAN style="text-decoration: underline;"&gt; if the function returns value&amp;gt;0, then the substring is present else not.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 06:15:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217859#M872838</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-11-09T06:15:13Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217860#M872839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks buddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 06:26:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217860#M872839</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-09T06:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217861#M872840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 06:26:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217861#M872840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-09T06:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217862#M872841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this link too&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/SubStringCount.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/SubStringCount.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/SubStringCount.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 07:25:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217862#M872841</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-11-09T07:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217863#M872842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or&lt;/P&gt;&lt;P&gt;Index(String1,String2,&lt;N&gt;)&lt;/N&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Index&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;('abcdefg','cdefg')&amp;nbsp;&amp;nbsp; -&amp;gt; 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;see&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm" title="https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm"&gt;https://help.qlik.com/en-US/qlikview/12.0/Subsystems/Client/Content/Scripting/StringFunctions/Index.htm&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 08:18:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217863#M872842</guid>
      <dc:creator>antoniotiman</dc:creator>
      <dc:date>2016-11-09T08:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Substring</title>
      <link>https://community.qlik.com/t5/QlikView/Substring/m-p/1217864#M872843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your question is now answered, please flag the Correct Answer (via the big "Correct Answer" button near every post) and Helpful Answers (found under the Actions menu under every post).&lt;/P&gt;&lt;P&gt;If not, please make clear what part of this topic you still need help with &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Nov 2016 10:50:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Substring/m-p/1217864#M872843</guid>
      <dc:creator>oknotsen</dc:creator>
      <dc:date>2016-11-09T10:50:50Z</dc:date>
    </item>
  </channel>
</rss>

