<?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 How can I extract something from this string text? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876617#M306086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/90327_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I extract the code between the symbols ^ ^ above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want those values to exist in a separate field &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jun 2015 19:48:11 GMT</pubDate>
    <dc:creator>jblomqvist</dc:creator>
    <dc:date>2015-06-22T19:48:11Z</dc:date>
    <item>
      <title>How can I extract something from this string text?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876617#M306086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following data:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/90327_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I extract the code between the symbols ^ ^ above?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want those values to exist in a separate field &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 19:48:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876617#M306086</guid>
      <dc:creator>jblomqvist</dc:creator>
      <dc:date>2015-06-22T19:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract something from this string text?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876618#M306087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either&lt;/P&gt;&lt;P&gt;subfield (FieldName, '^', 2)&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;TextBetween(FieldName, 'CLIENT001^', '^20')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edit:&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;mid(FieldName,11,7)&lt;/P&gt;&lt;P&gt;or ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 19:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876618#M306087</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-22T19:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I extract something from this string text?</title>
      <link>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876619#M306088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;yourfield,&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;subfield(yourfield, '^' ,1)&lt;/SPAN&gt; as firstfield,&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code" style="font-size: 13.3333330154419px;"&gt;subfield(yourfield, '^' ,2)&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt; as secondfield,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;.........&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;from&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;.......&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2015 19:52:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-can-I-extract-something-from-this-string-text/m-p/876619#M306088</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-06-22T19:52:59Z</dc:date>
    </item>
  </channel>
</rss>

