<?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: How to remove a specific string without affecting parts of other strings? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435220#M96955</link>
    <description>&lt;P&gt;What should be the output then?&lt;/P&gt;</description>
    <pubDate>Wed, 27 Mar 2024 14:34:01 GMT</pubDate>
    <dc:creator>BrunPierre</dc:creator>
    <dc:date>2024-03-27T14:34:01Z</dc:date>
    <item>
      <title>How to remove a specific string without affecting parts of other strings?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435175#M96948</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Having some issues with my Qlik script in which I am trying to remove specific strings in my table. For context, I am utilizing a word cloud and need to remove specific stop words. For example, here's my table:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;1&lt;/TD&gt;
&lt;TD width="50%"&gt;the&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;2&lt;/TD&gt;
&lt;TD width="50%"&gt;thesis&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I plug in either a replace or using a mapping table to remove "the", I wind up with the following:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;ID&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="50%"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;1&lt;/TD&gt;
&lt;TD width="50%"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;2&lt;/TD&gt;
&lt;TD width="50%"&gt;sis&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wind up with a blank space and "thesis" loses the "the" in it. How do I get around this?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 12:59:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435175#M96948</guid>
      <dc:creator>QlikToFindOut</dc:creator>
      <dc:date>2024-03-27T12:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove a specific string without affecting parts of other strings?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435203#M96952</link>
      <description>&lt;P&gt;I solved the issue of blank spaces by using a LEN(string) &amp;gt; 0, but still facing the issue of my replace or mapping load removing parts of other strings.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 14:12:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435203#M96952</guid>
      <dc:creator>QlikToFindOut</dc:creator>
      <dc:date>2024-03-27T14:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove a specific string without affecting parts of other strings?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435220#M96955</link>
      <description>&lt;P&gt;What should be the output then?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 14:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435220#M96955</guid>
      <dc:creator>BrunPierre</dc:creator>
      <dc:date>2024-03-27T14:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to remove a specific string without affecting parts of other strings?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435250#M96957</link>
      <description>&lt;P&gt;Ideally, it should be the following:&lt;/P&gt;
&lt;TABLE border="1" width="100%"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;ID&lt;/TD&gt;
&lt;TD width="50%"&gt;Text&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="50%"&gt;2&lt;/TD&gt;
&lt;TD width="50%"&gt;thesis&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I figured it out, I just decided to use a WHERE clause with a not equal to.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 15:24:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-remove-a-specific-string-without-affecting-parts-of-other/m-p/2435250#M96957</guid>
      <dc:creator>QlikToFindOut</dc:creator>
      <dc:date>2024-03-27T15:24:54Z</dc:date>
    </item>
  </channel>
</rss>

