<?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: How to use  SubField Function in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524415#M37641</link>
    <description>&lt;P&gt;&lt;STRONG&gt;For Hello-World-123, you can do:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MyTable:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;SubField("String",'-',1) AS "Title Chars",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField("String",'-',2) AS "Title Chars2",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField("String",'-',3) AS "Title Num";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;..Test&amp;nbsp; and comment us!&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Dec 2018 14:07:38 GMT</pubDate>
    <dc:creator>abraham_paradac</dc:creator>
    <dc:date>2018-12-27T14:07:38Z</dc:date>
    <item>
      <title>How to use  SubField Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524373#M37632</link>
      <description>&lt;P&gt;Im new here and I would like to make an simple example to Use SubField Funtion.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I Used in Load Script on Qliksense:&lt;/P&gt;&lt;P&gt;MyTable:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;TEXT(SubField("String",'-',1)) AS "Title Chars",&lt;BR /&gt;NUM (SubField("String",'-',2)) AS "Title Num",&amp;nbsp; &amp;nbsp;// Delimiter is '-'&amp;nbsp; / Is not necesary declare on the script. And Separe the string (" Hello-123", in &lt;SPAN&gt;Title Chars:&amp;nbsp;&lt;/SPAN&gt;"hello" and&amp;nbsp; &lt;SPAN&gt;Title Num:&amp;nbsp;&lt;/SPAN&gt;"123"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope to help someone.&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 13:12:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524373#M37632</guid>
      <dc:creator>abraham_paradac</dc:creator>
      <dc:date>2018-12-27T13:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to use  SubField Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524375#M37633</link>
      <description>&lt;P&gt;What if string has like "Hello-World-123" ?? Or every time "Hello-123" only?&lt;/P&gt;&lt;P&gt;Use, Simple as much&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MyTable:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;SubField("String",'-',1) AS "Title Chars",&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;SubField("String",'-',2) AS "Title Num";&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 13:17:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524375#M37633</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2018-12-27T13:17:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to use  SubField Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524385#M37634</link>
      <description>&lt;P&gt;Hello&lt;BR /&gt;&lt;BR /&gt;and you can use the LEFT and RIGHT functions too:&lt;/P&gt;&lt;P&gt;//Hello-123&lt;/P&gt;&lt;P&gt;MyTable:&lt;BR /&gt;LOAD&lt;BR /&gt;&lt;BR /&gt;TEXT(left(string,index(string,'-')-1) AS "Title Chars",&amp;nbsp; // Hello&lt;BR /&gt;NUM (right(string,index(string,'-')+1) AS "Title Num", //123&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 13:29:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524385#M37634</guid>
      <dc:creator>consultant_bi</dc:creator>
      <dc:date>2018-12-27T13:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to use  SubField Function</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524415#M37641</link>
      <description>&lt;P&gt;&lt;STRONG&gt;For Hello-World-123, you can do:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MyTable:&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;SubField("String",'-',1) AS "Title Chars",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField("String",'-',2) AS "Title Chars2",&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SubField("String",'-',3) AS "Title Num";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;..Test&amp;nbsp; and comment us!&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Dec 2018 14:07:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-use-SubField-Function/m-p/1524415#M37641</guid>
      <dc:creator>abraham_paradac</dc:creator>
      <dc:date>2018-12-27T14:07:38Z</dc:date>
    </item>
  </channel>
</rss>

