<?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 Replace Strings starting between 'A and W' in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977801#M80700</link>
    <description>&lt;P&gt;I've a field that has over&amp;nbsp; 2 k unique email ids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the sake of testing, I want to replace email ids with couple of email ids that&amp;nbsp; I have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ex: emails starting&amp;nbsp; with letters AB,......W should be replace with Jon.doe, emails starting with x...Z to be replaced with jane so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know we can use if condition for implementing the above, I was looking for a function , like the range function in python&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does qlik have a function that can pick a range between alphabets ?&lt;/P&gt;</description>
    <pubDate>Wed, 07 Sep 2022 00:20:11 GMT</pubDate>
    <dc:creator>SMalli</dc:creator>
    <dc:date>2022-09-07T00:20:11Z</dc:date>
    <item>
      <title>Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977801#M80700</link>
      <description>&lt;P&gt;I've a field that has over&amp;nbsp; 2 k unique email ids.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the sake of testing, I want to replace email ids with couple of email ids that&amp;nbsp; I have&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ex: emails starting&amp;nbsp; with letters AB,......W should be replace with Jon.doe, emails starting with x...Z to be replaced with jane so on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know we can use if condition for implementing the above, I was looking for a function , like the range function in python&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does qlik have a function that can pick a range between alphabets ?&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 00:20:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977801#M80700</guid>
      <dc:creator>SMalli</dc:creator>
      <dc:date>2022-09-07T00:20:11Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977822#M80704</link>
      <description>&lt;P&gt;I'm not aware of such a function. However,&amp;nbsp; I am sure it could&amp;nbsp; be possible to construct such a feature.&lt;/P&gt;
&lt;P&gt;Maybe a combination of the ord() function in&amp;nbsp; an interval match could be key words pointing&amp;nbsp; you in one doable direction.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;another approach is not to do text "intervals" but instead&amp;nbsp; wildchars. Then you could do an wildmatch() function or the qlikview component for wildchar mapping: SUB&amp;nbsp;Qvc.CreateWildMapExpression.&amp;nbsp; &lt;A href="https://github.com/RobWunderlich/Qlikview-Components/" target="_blank"&gt;https://github.com/RobWunderlich/Qlikview-Components/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Sep 2022 21:49:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977822#M80704</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2022-09-06T21:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977847#M80707</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/174518"&gt;@SMalli&lt;/a&gt;&amp;nbsp;Could you please give us sample data and I will try to figure some solution for it.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 01:48:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977847#M80707</guid>
      <dc:creator>sidhiq91</dc:creator>
      <dc:date>2022-09-07T01:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977974#M80722</link>
      <description>&lt;P&gt;An inline mapping table is easy to maintain and modify in script for testing purposes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Test_Map:
MAPPING LOAD * INLINE [
	Key, Value
	A, John
	B, John
	C, John
	D, John
	E, Jane
	F, Jane
	G, Jane
	H, Jane
];

Test:
LOAD
	ApplyMap('Test_Map', Left(Email, 1), Null()) as JohnJane
FROM
	Table.qvd (qvd);&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Sep 2022 08:31:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1977974#M80722</guid>
      <dc:creator>oskartoivonen</dc:creator>
      <dc:date>2022-09-07T08:31:28Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1978964#M80802</link>
      <description>&lt;LI-CODE lang="markup"&gt;If(eMail precedes 'X', 'Jon.Doe', 'Jane.Doe')&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 08 Sep 2022 20:11:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1978964#M80802</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2022-09-08T20:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1978972#M80803</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/675"&gt;@MarcoWedel&lt;/a&gt;I was not thinking of the&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;precedes&amp;nbsp;&lt;/EM&gt;&lt;/STRONG&gt;nor&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;follows&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;operator, but those will surely do the trick &lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Sep 2022 20:55:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1978972#M80803</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2022-09-08T20:55:13Z</dc:date>
    </item>
    <item>
      <title>Re: Replace Strings starting between 'A and W'</title>
      <link>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1979258#M80834</link>
      <description>&lt;P&gt;Thank y0u Vegar and Marco !, appreciate the help.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Sep 2022 12:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Replace-Strings-starting-between-A-and-W/m-p/1979258#M80834</guid>
      <dc:creator>SMalli</dc:creator>
      <dc:date>2022-09-09T12:48:05Z</dc:date>
    </item>
  </channel>
</rss>

