<?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 Remove first 2 characters from string and split string in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910098#M653295</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;I have an issue:&lt;/P&gt;&lt;P&gt;For a client i need to create a report from our programm, which links some accountcodes to specific places. These links are shown as:&lt;/P&gt;&lt;P&gt;\\Financial\profit-and-loss-account\net sales\&lt;/P&gt;&lt;P&gt;To create a hierarchy, i need to split these strings in order to declare parent/chield fields.&lt;/P&gt;&lt;P&gt;First, i need to remove the '\\' at the beginning of each string,&lt;/P&gt;&lt;P&gt;next i need to split the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To split the data, i know i have to use SubString() function, that is not a problem&lt;/P&gt;&lt;P&gt;I just want to know if there is a code to remove the first '\\'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dick &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Aug 2015 13:05:01 GMT</pubDate>
    <dc:creator>dickelsa</dc:creator>
    <dc:date>2015-08-04T13:05:01Z</dc:date>
    <item>
      <title>Remove first 2 characters from string and split string</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910098#M653295</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;I have an issue:&lt;/P&gt;&lt;P&gt;For a client i need to create a report from our programm, which links some accountcodes to specific places. These links are shown as:&lt;/P&gt;&lt;P&gt;\\Financial\profit-and-loss-account\net sales\&lt;/P&gt;&lt;P&gt;To create a hierarchy, i need to split these strings in order to declare parent/chield fields.&lt;/P&gt;&lt;P&gt;First, i need to remove the '\\' at the beginning of each string,&lt;/P&gt;&lt;P&gt;next i need to split the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To split the data, i know i have to use SubString() function, that is not a problem&lt;/P&gt;&lt;P&gt;I just want to know if there is a code to remove the first '\\'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dick &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 13:05:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910098#M653295</guid>
      <dc:creator>dickelsa</dc:creator>
      <dc:date>2015-08-04T13:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 2 characters from string and split string</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910099#M653296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could use the function replace(string, '\\', '') or mid(string, 3).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 13:07:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910099#M653296</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-04T13:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 2 characters from string and split string</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910100#M653297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Substring(textField, '\\', 2)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 13:11:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910100#M653297</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-08-04T13:11:11Z</dc:date>
    </item>
    <item>
      <title>Re: Remove first 2 characters from string and split string</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910101#M653298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Substring should have been SubField()&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Aug 2015 13:14:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-first-2-characters-from-string-and-split-string/m-p/910101#M653298</guid>
      <dc:creator>dickelsa</dc:creator>
      <dc:date>2015-08-04T13:14:15Z</dc:date>
    </item>
  </channel>
</rss>

