<?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: Remove ' from text in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510830#M104961</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/143821"&gt;@Neha121&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the above solutions dont work using KeepChar()&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;KeepChar(Field, 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM 0123456789') as TestFieldWithoutChar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards Jandre&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Mar 2025 13:14:22 GMT</pubDate>
    <dc:creator>JandreKillianRIC</dc:creator>
    <dc:date>2025-03-20T13:14:22Z</dc:date>
    <item>
      <title>Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510734#M104940</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; My text is &lt;STRONG&gt;SOLICITOR'S OFFICE&lt;/STRONG&gt; in one of the dimension. I want to remove ' before S. how do I do that in script. how do I use replace().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 02:44:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510734#M104940</guid>
      <dc:creator>Neha121</dc:creator>
      <dc:date>2025-03-20T02:44:26Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510735#M104941</link>
      <description>&lt;P&gt;Something like this or a little different based on what fits for you may be -&amp;nbsp;&lt;/P&gt;&lt;P&gt;Replace(text,'''S','S')&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 03:26:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510735#M104941</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2025-03-20T03:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510736#M104942</link>
      <description>&lt;P&gt;tried this but doesn't work&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 03:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510736#M104942</guid>
      <dc:creator>Neha121</dc:creator>
      <dc:date>2025-03-20T03:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510738#M104943</link>
      <description>&lt;DIV&gt;Works for me, see if you did something different than I did as below -&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;data:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Load *,&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Replace(text,'''S','S') as text_modified&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;;&lt;/DIV&gt;&lt;DIV&gt;Load * inline [&lt;/DIV&gt;&lt;DIV&gt;text&lt;/DIV&gt;&lt;DIV&gt;SOLICITOR'S OFFICE&lt;/DIV&gt;&lt;DIV&gt;];&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Digvijay_Singh_0-1742444468313.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178787iACCB6F8123B73F4B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Digvijay_Singh_0-1742444468313.png" alt="Digvijay_Singh_0-1742444468313.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 04:21:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510738#M104943</guid>
      <dc:creator>Digvijay_Singh</dc:creator>
      <dc:date>2025-03-20T04:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510743#M104944</link>
      <description>&lt;P&gt;Try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Replace([YourField], '''', '') AS CleanedField&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM [YourSource];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; PurgeChar([YourField], ' ' ' ') AS CleanedField&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM [Your source];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 05:06:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510743#M104944</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-20T05:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510752#M104947</link>
      <description>&lt;P&gt;&lt;FONT size="2"&gt;Any of the below method will do:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simsa_0-1742453467130.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178791i28A65B41CC6AFF39/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simsa_0-1742453467130.png" alt="simsa_0-1742453467130.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="simsa_0-1742453809947.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/178792i97962918355A8345/image-size/medium?v=v2&amp;amp;px=400" role="button" title="simsa_0-1742453809947.png" alt="simsa_0-1742453809947.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 06:57:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510752#M104947</guid>
      <dc:creator>simsa</dc:creator>
      <dc:date>2025-03-20T06:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510754#M104948</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe you are having different character than ' ?&lt;/P&gt;&lt;P&gt;Answers above are correct so you may want to just make sure you are replacing correct character as it can be different than '.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It may be ' or ` or something else&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 07:01:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510754#M104948</guid>
      <dc:creator>Lech_Miszkiewicz</dc:creator>
      <dc:date>2025-03-20T07:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510823#M104960</link>
      <description>&lt;P&gt;Or you can use&amp;nbsp; A to Z all upper case and a to z lower case in ' ' below expression&amp;nbsp;&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; KeepChar(field, 'A-Z a-z ') AS CleaText&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FROM source&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So that you can remove any symbols ...it will keep only characters&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 13:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510823#M104960</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2025-03-20T13:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Remove ' from text</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510830#M104961</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/143821"&gt;@Neha121&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the above solutions dont work using KeepChar()&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;KeepChar(Field, 'qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM 0123456789') as TestFieldWithoutChar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards Jandre&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 13:14:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-from-text/m-p/2510830#M104961</guid>
      <dc:creator>JandreKillianRIC</dc:creator>
      <dc:date>2025-03-20T13:14:22Z</dc:date>
    </item>
  </channel>
</rss>

