<?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_match for identifying multiple keywords in 2 columns in Alteryx Designer Desktop Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777539#M189191</link>
    <description>&lt;P&gt;Yes. with no wildcards/regex code it is looking for an exact match. To find GAP&amp;nbsp; INC you could use REGEX_Match([Field1],".*\sINC.*") which won't match princeton because it requires a space prior to INC. It will however match INCONTINENT because it will match anything after. The later match is because you could have a period, a comma, a space, or an end of line following INC&lt;/P&gt;</description>
    <pubDate>Thu, 24 Jun 2021 16:10:52 GMT</pubDate>
    <dc:creator>apathetichell</dc:creator>
    <dc:date>2021-06-24T16:10:52Z</dc:date>
    <item>
      <title>Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776816#M188930</link>
      <description>&lt;P&gt;I have below calculation which was working until I created a new formula before regex function,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if REGEX_Match([Payee Name],".LLC.||.CORP.||.DEPT.||.TRUSTEE.||.ESTATE.||.CLERK.||.INC.||.DEPARTMENT.||.CONSULTING.||.DBA.||.TREASURY.||.ASSOCIATES.||.AGENCY.||.SERVICE.||.TREASURY.||.LAW.||.REALTY.||.GROUP.||.COLLECTION.")&lt;BR /&gt;THEN 'ENT'&lt;BR /&gt;elseif REGEX_Match([Payee addr 1],".LLC.||.CORP.||.DEPT.||.TRUSTEE.||.ESTATE.||.CLERK.||.INC.||.DEPARTMENT.||.CONSULTING.||.DBA.||.TREASURY.||.ASSOCIATES.||.AGENCY.||.SERVICE.||.TREASURY.||.LAW.||.REALTY.||.GROUP.||.COLLECTION.")&lt;BR /&gt;then 'ENT'&lt;BR /&gt;elseif [Payee addr 1] != '' and REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 then 'MULT'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee Name],".SR.")) then 'MULTI SR'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee addr 1],".SR.")) then 'MULTI SR'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee Name],".*III.*")) then 'MULTI III'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee addr 1],".*III.*")) then 'MULTI III'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 and REGEX_Match([Payee Name],".JR.")) then 'IND JR'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 and REGEX_Match([Payee Name],".SR.")) then 'IND SR'&lt;BR /&gt;ELSE 'IND'&lt;BR /&gt;ENDIF&lt;/P&gt;&lt;P&gt;The requirement was to identify certain type of keywords and then categorize them based on the results. Now before calling out that Regex function I created a formula which is :&lt;/P&gt;&lt;P&gt;if [Payee addr 1] = 'UNKNOWN' then null()&lt;BR /&gt;else [Payee addr 1]&lt;BR /&gt;endif&lt;/P&gt;&lt;P&gt;The result of the above is that where ever the unknown is being nulled the Regex calc is giving me unexpected result of ENT instead of IND. Results screenshot attached&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance for your help&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:45:47 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776816#M188930</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-23T14:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776852#M188932</link>
      <description>&lt;P&gt;can you post sample data? switch statements would definitely make things clearer.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 14:58:43 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776852#M188932</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-23T14:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776860#M188936</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/212611"&gt;@Idyllic_Data_Geek&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If everything else is working fine except the “else” then &amp;nbsp;i suggest you explicitly call out the null test&amp;nbsp;&lt;/P&gt;&lt;P&gt;If isnull(&amp;lt;fieldname&amp;gt;) then “IND”&lt;/P&gt;&lt;P&gt;elseif ... &amp;lt;the rest if your test conditions&amp;gt;&lt;BR /&gt;then “errors”&lt;/P&gt;&lt;P&gt;Endif&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;without knowing some sample data, that’s the best i can think of&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dawn&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 15:05:38 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776860#M188936</guid>
      <dc:creator>DawnDuong</dc:creator>
      <dc:date>2021-06-23T15:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776899#M188943</link>
      <description>&lt;P&gt;Double pipes are your problem. Get rid of the double pipes and turn them into single pipes and it works. The single pipe is your regex "or" operator - so having a double pipe means you are accepting null() in your set of things to match for ie || effectively means OR null(). See screenshots with single pipe and one set of double pipes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-23 (1).png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/190496i98B2876A0E37E33A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-06-23 (1).png" alt="2021-06-23 (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-23.png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/190495i258BD7CD8F5D187C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-06-23.png" alt="2021-06-23.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 15:19:40 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/776899#M188943</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-23T15:19:40Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777006#M188971</link>
      <description>&lt;P&gt;@&lt;SPAN&gt;apathetichell&lt;/SPAN&gt; thank you .. it did the trick&lt;/P&gt;</description>
      <pubDate>Wed, 23 Jun 2021 16:21:59 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777006#M188971</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-23T16:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777410#M189131</link>
      <description>&lt;P&gt;Quesytion -- do you know what the * is doing in the below regex calc?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if REGEX_Match([Payee Name],".*LLC.*||.*CORP.*||.*DEPT.*||.*TRUSTEE.*||.*ESTATE.*||.*CLERK.*||.*INC.*||.*DEPARTMENT.*||.*CONSULTING.*||.*DBA.*||.*TREASURY.*||.*ASSOCIATES.*||.*AGENCY.*||.*SERVICE.*||.*TREASURY.*||.*LAW.*||.*REALTY.*||.*GROUP.*||.*COLLECTION.*||.*SOCIETY.*||.*STATE.*||.*DEPARTMENT.*||.*ASSOCIATION.*||.*COUNTY.*||.*CONSULATE.*||.*INSURANCE.*||.*DISTRICT.*||.*COUNCIL.*||.*PROGRAM.*||.*CLEANING.*||.*LTD.*||.*PROGR.*||.*TREASURER.*")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Department is being flagged correctly but Departments is not.what does the period and asterisk accomplish in&amp;nbsp;.*DEPARTMENT.*?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 13:35:06 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777410#M189131</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T13:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777418#M189136</link>
      <description>&lt;P&gt;".*" means anything any number of times so it's basically saying wildcard LLC wildcard. Each entry repeats with a wildcard before and after. note - the wildcard doesn't need to be fulfilled - it's just there as a check.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd have to see the full data on the Departments entry and the match to explain but keep in mind that this might not be the ideal regex use - by definition PARTS (or something) could match DEPARTMENTS prior to DEPARTMENT...&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 13:59:42 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777418#M189136</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T13:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777427#M189137</link>
      <description>&lt;P&gt;then with&amp;nbsp;&lt;SPAN&gt;.*DEPARTMENT.*...the code should recognize Departments as well?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 13:59:24 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777427#M189137</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T13:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777431#M189138</link>
      <description>&lt;P&gt;It SHOULD. Issues are is it case insensitive and is departments matching anything else beforehand in the regex statement.&lt;/P&gt;&lt;P&gt;department True&lt;BR /&gt;departments True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is what I got from my test.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 14:02:24 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777431#M189138</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T14:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777435#M189139</link>
      <description>&lt;P&gt;It's not case sensitive. Can you please test it with the Payee Name: WILHELMINA MARTIN. why is being flagged as 'ENT' and not 'IND'? Below is the full code that I have,&lt;/P&gt;&lt;P&gt;if REGEX_Match([Payee Name],".*LLC.*||.*CORP.*||.*DEPT.*||.*TRUSTEE.*||.*ESTATE.*||.*CLERK.*||.*INC.*||.*DEPARTMENT.*||.*CONSULTING.*||.*DBA.*||.*TREASURY.*||.*ASSOCIATES.*||.*AGENCY.*||.*SERVICE.*||.*TREASURY.*||.*LAW.*||.*REALTY.*||.*GROUP.*||.*COLLECTION.*||.*SOCIETY.*||.*STATE.*||.*DEPARTMENT.*||.*ASSOCIATION.*||.*COUNTY.*||.*CONSULATE.*||.*INSURANCE.*||.*DISTRICT.*||.*COUNCIL.*||.*PROGRAM.*||.*CLEANING.*||.*LTD.*||.*PROGR.*||.*TREASURER.*||.*RESORT.*||.*APARTMENTS.*||.*MANAGEMENT.*||.*CONDOMINIUM.*") and !ISNULL([Payee Name])&lt;BR /&gt;THEN 'ENT'&lt;BR /&gt;elseif REGEX_Match([Payee addr 1],".*LLC.*||.*CORP.*||.*DEPT.*||.*TRUSTEE.*||.*ESTATE.*||.*CLERK.*||.*INC.*||.*DEPARTMENT.*||.*CONSULTING.*||.*DBA.*||.*TREASURY.*||.*ASSOCIATES.*||.*AGENCY.*||.*SERVICE.*||.*TREASURY.*||.*LAW.*||.*REALTY.*||.*GROUP.*||.*COLLECTION.*||.*SOCIETY.*||.*STATE.*||.*DEPARTMENT.*||.*ASSOCIATION.*||.*COUNTY.*||.*CONSULATE.*||.*INSURANCE.*||.*DISTRICT.*||.*COUNCIL.*||.*PROGRAM.*||.*CLEANING.*||.*LTD.*||.*PROGR.*||.*TREASURER.*||.*APARTMENTS.*||.*RESORT.*||.*MANAGEMENT.*||.*CONDOMINIUM.*") and !ISNULL([Payee addr 1])&lt;BR /&gt;then 'ENT'&lt;BR /&gt;elseif !ISNULL([Payee addr 1]) and REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 then 'MULT'&lt;BR /&gt;elseif((REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 or ISNULL([Payee addr 1]))and REGEX_Match([Payee Name],".SR.")) then 'MULTI SR'&lt;BR /&gt;elseif((REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 or ISNULL([Payee addr 1])) and REGEX_Match([Payee addr 1],".SR.")) then 'MULTI SR'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee Name],".*III.*")) then 'MULTI III'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;lt;= 0 and REGEX_Match([Payee addr 1],".*III.*")) then 'MULTI III'&lt;BR /&gt;elseif((REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 or ISNULL([Payee addr 1]))and (REGEX_Match([Payee Name],".*JR.*"))) then 'IND JR'&lt;BR /&gt;elseif( REGEX_CountMatches([Payee addr 1], '[0-9]') &amp;gt; 0 and REGEX_Match([Payee Name],".SR.")) then 'IND SR'&lt;BR /&gt;ELSE 'IND'&lt;BR /&gt;ENDIF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 14:15:44 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777435#M189139</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T14:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777446#M189143</link>
      <description>&lt;P&gt;Match is in the payee addr not the name - I transcribed and edited your relevant if statement (got rid of double pipes) and ran this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-24 (1).png" style="width: 400px;"&gt;&lt;img src="https://community.alteryx.com/t5/image/serverpage/image-id/190667i39D40E7E42A68F06/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2021-06-24 (1).png" alt="2021-06-24 (1).png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; So it's not Payee Name which is triggering the false match - at least if you clean up the code.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 14:32:45 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777446#M189143</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777454#M189148</link>
      <description>&lt;P&gt;Removing the pipe does not work for me!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 14:52:25 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777454#M189148</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T14:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777476#M189158</link>
      <description>&lt;P&gt;Sorry should have been clearer&amp;nbsp; - I removed the pipes and redid the first clause of the if statement that gave me: if REGEX_Match([FIELD1],".*LLC.*|.*CORP.*|.*DEPT.*|.*TRUSTEE.*|.*ESTATE.*|.*CLERK.*|.*INC.*|.*DEPARTMENT.*|.*CONSULTING.*|.*DBA.*|.*TREASURY.*|.*ASSOCIATES.*|.*AGENCY.*|.*SERVICE.*|.*TREASURY.*|.*LAW.*|.*REALTY.*|.*GROUP.*|.*COLLECTION.*|.*SOCIETY.*|.*STATE.*|.*DEPARTMENT.*|.*ASSOCIATION.*|.*COUNTY.*|.*CONSULATE.*|.*INSURANCE.*|.*DISTRICT.*|.*COUNCIL.*|.*PROGRAM.*|.*CLEANING.*|.*LTD.*|.*PROGR.*|.*TREASURER.*|.*RESORT.*|.*APARTMENTS.*|.*MANAGEMENT.*|.*CONDOMINIUM.*")&lt;BR /&gt;THEN 'ENT' ELSE "OTHER" ENDIF - which gave me the results pictured.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:06:57 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777476#M189158</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T15:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777477#M189159</link>
      <description>&lt;P&gt;Understood. But the payee addr 1 is using the same logic and looking for the same keywords. The payee addr1 is not having any of those keywords so I'm not sure why it is flagging as ENT. I can not post the data here...but I hope that you are understanding what I'm stating!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:10:13 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777477#M189159</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777480#M189161</link>
      <description>&lt;P&gt;Can you post the payee addr 1 for the entry you posted? if not is it possible that these letters are found in the address?&lt;/P&gt;&lt;P&gt;LAW&lt;/P&gt;&lt;P&gt;CORP&lt;/P&gt;&lt;P&gt;RESORT&lt;/P&gt;&lt;P&gt;STATE&lt;/P&gt;&lt;P&gt;INC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;like if the address is 170 STATE ST. that would flag, or 220 LAWTON would flag.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:12:12 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777480#M189161</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T15:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777482#M189163</link>
      <description>&lt;P&gt;If you can't cut and paste - I'd recommend troubleshooting on your own by cutting and pasting parts to figure out where the error is occurring but as noted - you are using regex as kind of a natural language editor and it's not quite that.&amp;nbsp; I'd say the approach you are using will never be perfect especially on larger data sets so you just kind of have to figure out how you are handling and dealing with the errors.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:14:24 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777482#M189163</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T15:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777483#M189164</link>
      <description>&lt;P&gt;PRINCETON AVE&lt;/P&gt;&lt;P&gt;VINCENNES RD&lt;/P&gt;&lt;P&gt;AVE&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:14:43 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777483#M189164</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T15:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777488#M189167</link>
      <description>&lt;P&gt;so instead of using the wildcard all over.. how can I define "(space)LLC(Space)"&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:20:24 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777488#M189167</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T15:20:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777498#M189172</link>
      <description>&lt;P&gt;Yeah if you modify your code from ".*" to "\s" in all instances you should only find instances where space \keyword\ space are met. so "\sINC\s" should exclude Princeton. Again this won't help with STATE STREET.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 15:32:23 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777498#M189172</guid>
      <dc:creator>apathetichell</dc:creator>
      <dc:date>2021-06-24T15:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regex_match for identifying multiple keywords in 2 columns</title>
      <link>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777530#M189186</link>
      <description>&lt;P&gt;got it. thank you. If I do just the&amp;nbsp;&lt;SPAN&gt;|INC|, then is it looking for the values of [Field] = INC and if it has GAP INC then it will reject it?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 16:03:46 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Regex-match-for-identifying-multiple-keywords-in-2-columns/m-p/777530#M189186</guid>
      <dc:creator>Idyllic_Data_Geek</dc:creator>
      <dc:date>2021-06-24T16:03:46Z</dc:date>
    </item>
  </channel>
</rss>

