<?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 load data that matches regular expression? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1584139#M42714</link>
    <description>&lt;P&gt;The "like" operator and the "Wildmatch()" function support wildcard characters "*" and "?".&amp;nbsp; It's good that you could resolve your particular requirement with like.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regular expression syntax is not currently supported in Qlik Sense out-of-the-box.&amp;nbsp; A couple of possible workarounds when you do need full regex:&lt;/P&gt;&lt;P&gt;1. Use the RegEx web connector&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Data-Source-Connectors/RegEx-Connector.htm" target="_blank"&gt;https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Data-Source-Connectors/RegEx-Connector.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2. Write your own (or borrow) your own RegEx implementation as a Server Side Extension. See&amp;nbsp;&lt;A href="https://github.com/RobWunderlich/qcb-qlik-sse" target="_blank"&gt;https://github.com/RobWunderlich/qcb-qlik-sse&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It would be great to see Regex function as native Qlik functions!&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2019 18:49:38 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2019-05-23T18:49:38Z</dc:date>
    <item>
      <title>How to load data that matches regular expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583611#M42664</link>
      <description>&lt;P&gt;Trying to only load rows where URL matches regular expression &lt;FONT face="courier new,courier" color="#000080"&gt;^domain\.com&lt;/FONT&gt;.&lt;/P&gt;&lt;P&gt;I solved it the way I did not want to with &lt;FONT face="courier new,courier" color="#000080"&gt;if(WildMatch([PageURL],'domain.com*'),'Yes','No') AS [MainDomain]&lt;/FONT&gt;- I would rather avoid creating a new column.&lt;/P&gt;&lt;P&gt;I Googled the living daylights of "&lt;FONT face="courier new,courier"&gt;qlik match regex in load&lt;/FONT&gt;" and its variations.&lt;/P&gt;&lt;P&gt;Below is another example of something that does &lt;STRONG&gt;not&lt;/STRONG&gt; work:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; DateOfPageview,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; PageURL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; Pageviews&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; FROM [lib://dataSource.qvd]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; WHERE [PageURL] REGEXP '^domain\.com'&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;(qvd);&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Is it possible?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 20:48:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583611#M42664</guid>
      <dc:creator>RomanVanK</dc:creator>
      <dc:date>2024-11-16T20:48:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data that matches regular expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583646#M42669</link>
      <description>I'm not familiar with the regular expression syntax, but based on your expression that worked, you could do something similar in the load statement.&lt;BR /&gt;...&lt;BR /&gt;WHERE [PageURL] like "*domain.com*"&lt;BR /&gt;</description>
      <pubDate>Thu, 23 May 2019 00:28:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583646#M42669</guid>
      <dc:creator>Lisa_P</dc:creator>
      <dc:date>2019-05-23T00:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data that matches regular expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583957#M42694</link>
      <description>&lt;P&gt;Your suggestions worked, thank you.&lt;/P&gt;&lt;P&gt;Here's the script that worked:&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;LOAD&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; DateOfPageview,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; PageURL,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;&amp;nbsp; &amp;nbsp; Pageviews&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;FROM [lib://dataSource.qvd]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;(qvd)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier" color="#000080"&gt;WHERE [PageURL] like 'domain.com*';&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;I cannot mark my original question as solved, because this is an answer to a different question.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 14:26:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1583957#M42694</guid>
      <dc:creator>RomanVanK</dc:creator>
      <dc:date>2019-05-23T14:26:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to load data that matches regular expression?</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1584139#M42714</link>
      <description>&lt;P&gt;The "like" operator and the "Wildmatch()" function support wildcard characters "*" and "?".&amp;nbsp; It's good that you could resolve your particular requirement with like.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regular expression syntax is not currently supported in Qlik Sense out-of-the-box.&amp;nbsp; A couple of possible workarounds when you do need full regex:&lt;/P&gt;&lt;P&gt;1. Use the RegEx web connector&amp;nbsp;&lt;A href="https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Data-Source-Connectors/RegEx-Connector.htm" target="_blank"&gt;https://help.qlik.com/en-US/connectors/Subsystems/Web_Connectors_help/Content/Connectors_QWC/Data-Source-Connectors/RegEx-Connector.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;2. Write your own (or borrow) your own RegEx implementation as a Server Side Extension. See&amp;nbsp;&lt;A href="https://github.com/RobWunderlich/qcb-qlik-sse" target="_blank"&gt;https://github.com/RobWunderlich/qcb-qlik-sse&lt;/A&gt;&lt;/P&gt;&lt;P&gt;It would be great to see Regex function as native Qlik functions!&lt;/P&gt;&lt;P&gt;-Rob&lt;BR /&gt;&lt;A href="http://masterssummit.com" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://qlikviewcookbook.com" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.easyqlik.com" target="_blank"&gt;http://www.easyqlik.com&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2019 18:49:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-load-data-that-matches-regular-expression/m-p/1584139#M42714</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2019-05-23T18:49:38Z</dc:date>
    </item>
  </channel>
</rss>

