<?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: Trim in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346251#M702580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field name is MEM_ID. So I want to remove { }&amp;nbsp; while loading from around 50,000 records and not just for one ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Jul 2012 17:04:01 GMT</pubDate>
    <dc:creator>hkg_qlik</dc:creator>
    <dc:date>2012-07-11T17:04:01Z</dc:date>
    <item>
      <title>Trim</title>
      <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346249#M702578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an ID in a QVD file which looks like {9038585065}.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to remove the { } from all the ID's I have in the QVD File while loading.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 16:48:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trim/m-p/346249#M702578</guid>
      <dc:creator>hkg_qlik</dc:creator>
      <dc:date>2012-07-11T16:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Trim</title>
      <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346250#M702579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may also use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PurgrChar(&lt;SPAN style="color: #636363; font-family: Arial; font-size: 12px; background-color: #ffffff;"&gt;'{9038585065}&lt;/SPAN&gt;','{}')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 16:58:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trim/m-p/346250#M702579</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2012-07-11T16:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Trim</title>
      <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346251#M702580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field name is MEM_ID. So I want to remove { }&amp;nbsp; while loading from around 50,000 records and not just for one ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 17:04:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trim/m-p/346251#M702580</guid>
      <dc:creator>hkg_qlik</dc:creator>
      <dc:date>2012-07-11T17:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Trim</title>
      <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346252#M702581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not as efficient as &lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/krishnamoorthy" id="jive-3827030458184506878443"&gt;krishnamoorthy&lt;/A&gt;'s answer, but another way is as follows if it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&amp;nbsp; subfield(mid(MEM_ID,2,100),'}',1) as MEM_ID_Clean&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I assume that there will be no more than 100 characters and the { will always be the first character?):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Derek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 17:04:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trim/m-p/346252#M702581</guid>
      <dc:creator>derekjones</dc:creator>
      <dc:date>2012-07-11T17:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Trim</title>
      <link>https://community.qlik.com/t5/QlikView/Trim/m-p/346253#M702582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you should try using&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PurgeChar(MEM_ID,'{}') as MEM_ID&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your load script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Jul 2012 17:07:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Trim/m-p/346253#M702582</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2012-07-11T17:07:31Z</dc:date>
    </item>
  </channel>
</rss>

