<?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: Regex_Replace([Reported POS Record - SKU],&amp;quot;(.*)(\s)(.*)&amp;quot;,'$1')    meaning in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301491#M324906</link>
    <description>&lt;P&gt;Sure&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/611799"&gt;@sonu2801&lt;/a&gt;, these capture groups are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. (.*) - zero or more of&amp;nbsp;&lt;STRONG&gt;any&amp;nbsp;&lt;/STRONG&gt;character&lt;/P&gt;
&lt;P&gt;2. ([E]) - an E&lt;/P&gt;
&lt;P&gt;3. ([0-9]) - one or more of any number&lt;/P&gt;
&lt;P&gt;4. ([^0-9]) - a single character that is&amp;nbsp;&lt;STRONG&gt;not&amp;nbsp;&lt;/STRONG&gt;a digit 0-9&lt;/P&gt;
&lt;P&gt;5. (.*) - zero or more of any character&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The replacement is referencing capture groups 2 &amp;amp; 3, therefore the statement as a whole will substitute the [Reported POS Record - SKU] value with E &amp;amp; all of the numbers following it.&lt;/P&gt;</description>
    <pubDate>Thu, 01 Aug 2024 13:02:07 GMT</pubDate>
    <dc:creator>DataNath</dc:creator>
    <dc:date>2024-08-01T13:02:07Z</dc:date>
    <item>
      <title>Regex_Replace([Reported POS Record - SKU],"(.*)(\s)(.*)",'$1')    meaning</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301436#M324892</link>
      <description>&lt;P&gt;i want to know the meaning of query&lt;STRONG&gt;&amp;nbsp;Regex_Replace([Reported POS Record - SKU],"(.*)(\s)(.*)",'$1').&amp;nbsp; what this expression do?&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 10:31:43 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301436#M324892</guid>
      <dc:creator>sonu2801</dc:creator>
      <dc:date>2024-08-01T10:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_Replace([Reported POS Record - SKU],"(.*)(\s)(.*)",'$1')    meaning</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301457#M324895</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/611799"&gt;@sonu2801&lt;/a&gt;, this expression will replace the [Reported POS Record - SKU] field value with everything up until the final space.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(.*) - zero or more of&amp;nbsp;&lt;STRONG&gt;any&amp;nbsp;&lt;/STRONG&gt;character&lt;/P&gt;
&lt;P&gt;(\s) - a space&lt;/P&gt;
&lt;P&gt;(.*) - zero or more of any character again&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The parenthesis here denote a capturing group. $N is then used to reference capturing groups, therefore $1 takes the first i.e. the initial (.*).&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 11:21:22 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301457#M324895</guid>
      <dc:creator>DataNath</dc:creator>
      <dc:date>2024-08-01T11:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_Replace([Reported POS Record - SKU],"(.*)(\s)(.*)",'$1')    meaning</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301460#M324896</link>
      <description>&lt;P&gt;thanks can you plese explin this also&amp;nbsp;Regex_Replace([Reported POS Record - SKU],"(.*)([E])([0-9]+)([^0-9])(.*)",'$2$3')&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 11:26:56 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301460#M324896</guid>
      <dc:creator>sonu2801</dc:creator>
      <dc:date>2024-08-01T11:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_Replace([Reported POS Record - SKU],"(.*)(\s)(.*)",'$1')    meaning</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301491#M324906</link>
      <description>&lt;P&gt;Sure&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/611799"&gt;@sonu2801&lt;/a&gt;, these capture groups are:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. (.*) - zero or more of&amp;nbsp;&lt;STRONG&gt;any&amp;nbsp;&lt;/STRONG&gt;character&lt;/P&gt;
&lt;P&gt;2. ([E]) - an E&lt;/P&gt;
&lt;P&gt;3. ([0-9]) - one or more of any number&lt;/P&gt;
&lt;P&gt;4. ([^0-9]) - a single character that is&amp;nbsp;&lt;STRONG&gt;not&amp;nbsp;&lt;/STRONG&gt;a digit 0-9&lt;/P&gt;
&lt;P&gt;5. (.*) - zero or more of any character&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The replacement is referencing capture groups 2 &amp;amp; 3, therefore the statement as a whole will substitute the [Reported POS Record - SKU] value with E &amp;amp; all of the numbers following it.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2024 13:02:07 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-Replace-Reported-POS-Record-SKU-quot-s-quot-1-meaning/m-p/1301491#M324906</guid>
      <dc:creator>DataNath</dc:creator>
      <dc:date>2024-08-01T13:02:07Z</dc:date>
    </item>
  </channel>
</rss>

