<?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: Find char in array in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050111#M86324</link>
    <description>&lt;P&gt;Thank for your reply, i am using table chart and&lt;/P&gt;
&lt;P&gt;wildmatch(";" &amp;amp; myField &amp;amp; ";", '*;2;*') did not work. its say error.&lt;/P&gt;
&lt;P&gt;there is something else i can do?&lt;/P&gt;</description>
    <pubDate>Thu, 16 Mar 2023 13:49:54 GMT</pubDate>
    <dc:creator>YanivZi</dc:creator>
    <dc:date>2023-03-16T13:49:54Z</dc:date>
    <item>
      <title>Find char in array</title>
      <link>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2049960#M86307</link>
      <description>&lt;P&gt;I have field with array that looks like this:&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;2;3;4;5;6;7;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;12;13;14;15;16;17;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;22;33;44;55;66;77;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0&lt;/P&gt;
&lt;P style="font-weight: 400;"&gt;I want to find those where the number "2" exists (first row) but when i use the index function it gives all lines.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 09:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2049960#M86307</guid>
      <dc:creator>YanivZi</dc:creator>
      <dc:date>2023-03-16T09:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: Find char in array</title>
      <link>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050019#M86315</link>
      <description>&lt;P&gt;You need to include the delimiter within your search, maybe with something like this:&lt;/P&gt;
&lt;P&gt;wildmatch(";" &amp;amp; Field &amp;amp; ";", '*;2;*')&lt;/P&gt;
&lt;P&gt;and the extra ; chars around the field consider also a match at start or ending of the string.&lt;/P&gt;
&lt;P&gt;Beside this you may split the field with an internal subfield() loop into n records and fetching your wanted value afterwards with a flag or within a where-clause.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 11:17:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050019#M86315</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-03-16T11:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Find char in array</title>
      <link>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050111#M86324</link>
      <description>&lt;P&gt;Thank for your reply, i am using table chart and&lt;/P&gt;
&lt;P&gt;wildmatch(";" &amp;amp; myField &amp;amp; ";", '*;2;*') did not work. its say error.&lt;/P&gt;
&lt;P&gt;there is something else i can do?&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 13:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050111#M86324</guid>
      <dc:creator>YanivZi</dc:creator>
      <dc:date>2023-03-16T13:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Find char in array</title>
      <link>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050161#M86328</link>
      <description>&lt;P&gt;Sorry there was a typo by adding the extra ; which shouldn't be quoted with double-quotes else single-quotes, like:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;wildmatch(';' &amp;amp; Field &amp;amp; ';', '*;2;*')&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2023 14:56:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Find-char-in-array/m-p/2050161#M86328</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2023-03-16T14:56:53Z</dc:date>
    </item>
  </channel>
</rss>

