<?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: removed the single alphabet from the string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291981#M871388</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If its just for presentation purposes on the front end then you could just create a calculated dimension within charts/tables etc.&lt;/P&gt;&lt;P&gt;Obviously this is also dependant on the format being the same in every instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;=left(Field,6)&amp;amp;right(Field,2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Nov 2016 15:30:54 GMT</pubDate>
    <dc:creator>danansell42</dc:creator>
    <dc:date>2016-11-23T15:30:54Z</dc:date>
    <item>
      <title>removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291968#M871375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How are you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to get rid of single alphabet from the string&lt;/P&gt;&lt;P&gt;exp &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 139px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" width="139"&gt;NH JU Y OK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: none;"&gt;TH JU S OK&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;i have two strings as above so i am expecting the result as below can you please help me out.&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 139px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" width="139"&gt;NH JU&amp;nbsp; OK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl64" height="20" style="border-top: none;"&gt;TH JU&amp;nbsp; OK&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you all&amp;nbsp; have observed that i have removed&amp;nbsp; the single alphabet from given strings.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291968#M871375</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291969#M871376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;something like this:&lt;/P&gt;&lt;P&gt;(the only downturn is that the&amp;nbsp; order will be slightly changed)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;temp:&lt;/P&gt;&lt;P&gt;load &lt;/P&gt;&lt;P&gt;RecNo() as row,&lt;/P&gt;&lt;P&gt;SubField(A,' ') as Field;&lt;/P&gt;&lt;P&gt;load * inline [&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;'NH JU Y OK'&lt;/P&gt;&lt;P&gt;'TH JU S OK'&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load Concat( Field,' ') as NewField,&lt;/P&gt;&lt;P&gt;row&lt;/P&gt;&lt;P&gt;Resident temp&lt;/P&gt;&lt;P&gt;where len(Field)&amp;gt;1&lt;/P&gt;&lt;P&gt;Group by row;&lt;/P&gt;&lt;P&gt;drop table temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/144526_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 16:56:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291969#M871376</guid>
      <dc:creator>robert_mika</dc:creator>
      <dc:date>2016-11-22T16:56:24Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291970#M871377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One way could be like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Input:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load *, RowNo() as ID Inline [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;String&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NH JU Y OK&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;TH JU S OK&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Join &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load StrTemp, ID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;where Len(StrTemp)=1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load SubField(String,' ') as StrTemp, ID Resident Input;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Final:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Load Replace(String, ' '&amp;amp;StrTemp&amp;amp;' ', ' ') as finalString Resident Input;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Drop table Input;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 16:59:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291970#M871377</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-11-22T16:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291971#M871378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I too was trying the same - but the string gets jumbled up because of the Sort Order in concat().&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:00:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291971#M871378</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-11-22T17:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291972#M871379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is an optional argument for sort weight available for the Concat() function ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;temp:&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;RecNo() as row,&lt;/P&gt;&lt;P&gt;SubField(A,' ', iterno()) as Field,&lt;/P&gt;&lt;P&gt;iterno() as index&lt;/P&gt;&lt;P&gt; inline [&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;P&gt;'NH JU Y OK'&lt;/P&gt;&lt;P&gt;'TH JU S OK'&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;WHILE iterno() &amp;lt;= Substringcount(A,' ')+1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load Concat( Field,' ',&lt;STRONG&gt;index&lt;/STRONG&gt;) as NewField,&lt;/P&gt;&lt;P&gt;row&lt;/P&gt;&lt;P&gt;Resident temp&lt;/P&gt;&lt;P&gt;where len(Field)&amp;gt;1&lt;/P&gt;&lt;P&gt;Group by row;&lt;/P&gt;&lt;P&gt;drop table temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:19:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291972#M871379</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-22T17:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291973#M871380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stefan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your great effort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know that is there any possibility can we handle the above scenario through the variable as i did in Sap Business object Tool but its different approach so i thinks that&amp;nbsp; it may be possible on variable level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:47:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291973#M871380</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-22T17:47:13Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291974#M871381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tresco,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks for your great effort.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Can you please let me know that is there any possibility can we handle the above scenario through the variable as i did in Sap Business object Tool but its different approach so i thinks that&amp;nbsp; it may be possible on variable level.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:47:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291974#M871381</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-22T17:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291975#M871382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you well.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Thanks for your great effort.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Can you please let me know that is there any possibility can we handle the above scenario through the variable as i did in Sap Business object Tool but its different approach so i thinks that&amp;nbsp; it may be possible on variable level.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2016 17:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291975#M871382</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-22T17:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291976#M871383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By 'variable level' if you mean UI solution, I don't see an easy dynamic solution for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 05:26:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291976#M871383</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2016-11-23T05:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291977#M871384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Salman,&lt;/P&gt;&lt;P&gt;It might be work,&lt;/P&gt;&lt;P&gt;So, please check the attachment.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="45.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/144591_45.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 06:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291977#M871384</guid>
      <dc:creator>susovan</dc:creator>
      <dc:date>2016-11-23T06:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291978#M871385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Susovan,&lt;/P&gt;&lt;P&gt;Can you please solutions for the same it just attachment .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 07:53:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291978#M871385</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-23T07:53:44Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291979#M871386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Robertmika&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented the same as above ,its working&amp;nbsp; as i wanted but when i used it through &lt;STRONG&gt;OLEDB CONNECTION &lt;/STRONG&gt;then it is throwing error&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;)&lt;STRONG&gt;Microsoft OLE DB Provider for SQL Server, ErrorMsg: 'RecNo' is not a recognized built-in function name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2)&lt;STRONG style="font-size: 13.3333px;"&gt;Microsoft OLE DB Provider for SQL Server, ErrorMsg: 'SubFeild' is not a recognized built-in function name&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please suggest me&amp;nbsp; as i need to implement that on OLEBD Connection.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 14:48:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291979#M871386</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-23T14:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291980#M871387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a preceding LOAD statement to be able to use QV functions (which are not known to the DBMS driver):&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/2972"&gt;Preceding Load&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 14:55:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291980#M871387</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-11-23T14:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291981#M871388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If its just for presentation purposes on the front end then you could just create a calculated dimension within charts/tables etc.&lt;/P&gt;&lt;P&gt;Obviously this is also dependant on the format being the same in every instance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;=left(Field,6)&amp;amp;right(Field,2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 15:30:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291981#M871388</guid>
      <dc:creator>danansell42</dc:creator>
      <dc:date>2016-11-23T15:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: removed the single alphabet from the string</title>
      <link>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291982#M871389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@STEFABWUHI&lt;/P&gt;&lt;P&gt;@ALIS2063&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Stefab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your quick respond.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally got solution .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Nov 2016 16:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/removed-the-single-alphabet-from-the-string/m-p/1291982#M871389</guid>
      <dc:creator>alis2063</dc:creator>
      <dc:date>2016-11-23T16:09:07Z</dc:date>
    </item>
  </channel>
</rss>

