<?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: Identify all unique substrings in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517687#M62590</link>
    <description>Mapping table require 2 field while you are mapping.&lt;BR /&gt;&lt;BR /&gt;1. May be use purgechar() function&lt;BR /&gt;2. This will done if you plug corrrct way of syntax.</description>
    <pubDate>Fri, 07 Dec 2018 00:35:59 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2018-12-07T00:35:59Z</dc:date>
    <item>
      <title>Identify all unique substrings</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517674#M62589</link>
      <description>&lt;P&gt;Hi all -&lt;/P&gt;&lt;P&gt;I'm trying to build a view that will show me all the unique words used a field in my product description and am having some challenges.&amp;nbsp; I'm starting by removing all the special characters found in my data (of which I can get most out but not all) and second I'm trying to remove a few "known words" from my list because I don't want to report on common words.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's an example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Summaries:
MAPPING LOAD * INLINE [
Summary
This is for a desktop deployment
This is for a new switch to replace ABC-123
"Need to install a new mouse"
Running cable for John &amp;amp; Mike
];

WordsToRemove:
LOAD * INLINE [
BadWords
for
the
need
this
];

InitialWords:
LOAD lower(SubField(MapSubString('SpecialChars',[Summary]),' ')) as Word RESIDENT [Summaries];

ValidWords:
LOAD Word AS NewWord
RESIDENT InitialWords 
WHERE LEN(Word)&amp;gt;3 
AND NOT Exists(BadWords,Word);&lt;/PRE&gt;&lt;P&gt;Problems:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I can't find a way to remove some special characters, especially the Microsoft "long dash" and their fancy quote symbols, as well as the ']' (because it breaks the inline table&amp;nbsp;load)&lt;/LI&gt;&lt;LI&gt;The remove of the "bad words" isn't&amp;nbsp;working at all - they still show up in my resultant list&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any help would be much appreciated!&amp;nbsp; Thank you in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Apr 2021 07:43:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517674#M62589</guid>
      <dc:creator>jlahners</dc:creator>
      <dc:date>2021-04-02T07:43:18Z</dc:date>
    </item>
    <item>
      <title>Re: Identify all unique substrings</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517687#M62590</link>
      <description>Mapping table require 2 field while you are mapping.&lt;BR /&gt;&lt;BR /&gt;1. May be use purgechar() function&lt;BR /&gt;2. This will done if you plug corrrct way of syntax.</description>
      <pubDate>Fri, 07 Dec 2018 00:35:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517687#M62590</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-12-07T00:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: Identify all unique substrings</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517694#M62591</link>
      <description>How do I type the Microsoft quotes and long dash in the load editor? As for the Not Exists, I must be missing the syntax error. Can you expand?</description>
      <pubDate>Fri, 07 Dec 2018 01:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517694#M62591</guid>
      <dc:creator>jlahners</dc:creator>
      <dc:date>2018-12-07T01:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Identify all unique substrings</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517702#M62592</link>
      <description>&lt;P&gt;Thank you for the pointers, I was able to get it fixed up.&amp;nbsp; My biggest problem was I needed a TRIM() call in the NOT EXISTS section.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Dec 2018 02:25:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1517702#M62592</guid>
      <dc:creator>jlahners</dc:creator>
      <dc:date>2018-12-07T02:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Identify all unique substrings</title>
      <link>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1519345#M62593</link>
      <description>&lt;P&gt;Try like this:&lt;/P&gt;&lt;P&gt;Load * inline "&lt;/P&gt;&lt;P&gt;";&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 14:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Identify-all-unique-substrings/m-p/1519345#M62593</guid>
      <dc:creator>vkish16161</dc:creator>
      <dc:date>2018-12-11T14:23:48Z</dc:date>
    </item>
  </channel>
</rss>

