<?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 repeated characters and extra names in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698336#M63860</link>
    <description>&lt;P&gt;Hi you can use this below,&lt;/P&gt;&lt;P&gt;Purgechar(Subfield(SubField(Field,'|'),'~',1),'.') as Field_Formed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HirisH_V7_0-1588347915949.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32795i7FE2B873C8822381/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HirisH_V7_0-1588347915949.png" alt="HirisH_V7_0-1588347915949.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 01 May 2020 15:46:45 GMT</pubDate>
    <dc:creator>HirisH_V7</dc:creator>
    <dc:date>2020-05-01T15:46:45Z</dc:date>
    <item>
      <title>Remove repeated characters and extra names</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698329#M63859</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a field in my DB that looks like this:&lt;/P&gt;&lt;P&gt;Field name is PRI_PI:&lt;/P&gt;&lt;P&gt;Elimelech, Menachem~0,2002,2003,F|Harvey, Ronald W.~0,2002,2003,F&lt;/P&gt;&lt;P&gt;In my load script, I can remove the tilde and numbers like this:&lt;/P&gt;&lt;P&gt;PurgeChar(PRI_PI,'1234567890~-') as PrimaryPI,&lt;/P&gt;&lt;P&gt;I then have this:&lt;/P&gt;&lt;P&gt;Elimelech, Menachem,,,F|Harvey, Ronald W.,,F&lt;/P&gt;&lt;P&gt;What I would like to to is to transform this to:&lt;/P&gt;&lt;P&gt;Elimelech, Menachem |&amp;nbsp;Harvey, Ronald W&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, when I display the list, each researcher is on their own row:&lt;/P&gt;&lt;P&gt;Elimelech, Menachem&lt;/P&gt;&lt;P&gt;Harvey, Ronald W&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How could I accomplish this?&amp;nbsp;&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;</description>
      <pubDate>Fri, 02 Apr 2021 08:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698329#M63859</guid>
      <dc:creator>bruce_sorge</dc:creator>
      <dc:date>2021-04-02T08:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove repeated characters and extra names</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698336#M63860</link>
      <description>&lt;P&gt;Hi you can use this below,&lt;/P&gt;&lt;P&gt;Purgechar(Subfield(SubField(Field,'|'),'~',1),'.') as Field_Formed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HirisH_V7_0-1588347915949.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/32795i7FE2B873C8822381/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HirisH_V7_0-1588347915949.png" alt="HirisH_V7_0-1588347915949.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 15:46:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698336#M63860</guid>
      <dc:creator>HirisH_V7</dc:creator>
      <dc:date>2020-05-01T15:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Remove repeated characters and extra names</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698339#M63861</link>
      <description>&lt;P&gt;Try this is expression:&lt;/P&gt;&lt;P&gt;LOAD&amp;nbsp;&lt;/P&gt;&lt;P&gt;Subfield( Subfield (PRI_PI,'|'), '~', 1) as Researcher&lt;/P&gt;&lt;P&gt;From data;&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 15:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698339#M63861</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2020-05-01T15:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: Remove repeated characters and extra names</title>
      <link>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698348#M63862</link>
      <description>&lt;P&gt;That worked, thanks&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2020 15:59:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Remove-repeated-characters-and-extra-names/m-p/1698348#M63862</guid>
      <dc:creator>bruce_sorge</dc:creator>
      <dc:date>2020-05-01T15:59:22Z</dc:date>
    </item>
  </channel>
</rss>

