<?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 for end of a string to contain _V1.3.sas in Alteryx Server Discussions</title>
    <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156237#M13690</link>
    <description>&lt;P&gt;If you use the Regex tool with output method "Match," you get the desired result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the expression &lt;STRONG&gt;^.+V\d\.\d\.sas$ &lt;/STRONG&gt;to achieve this. What this means is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"^.+" = from the beginning of the line, at least one of any character&lt;/LI&gt;&lt;LI&gt;"V\d\.\d\.sas$" = V[one digit].[one digit].sas, at the end of the line&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives you the result below. The two that failed were "V10.1000.sas" and "V3.19.sas" which do not meet the criteria of the expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Data_Matched&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;STARS_DATA_Help_Needed_RULE0_BK_AUTOMATE_V1.1.sas&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;S_DATATEST_QC_RULE_1BOOK_AUT_V10.1000.sas&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ST_DATA_TEST_QC_RULE2_BOOK_AUTO_V3.19.sas&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;HELP_STRS_DATAENG_QC_RULE_3BOOKs_MT_V1.1.sas&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
    <pubDate>Thu, 29 Jun 2023 22:27:31 GMT</pubDate>
    <dc:creator>Miles_Waller</dc:creator>
    <dc:date>2023-06-29T22:27:31Z</dc:date>
    <item>
      <title>REGEX for end of a string to contain _V1.3.sas</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156181#M13689</link>
      <description>&lt;P&gt;REGEX - Beginner.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to match this string where the numeric values in this string parse is a variable.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below are some examples.&amp;nbsp; Can someone help me understand how to check if the string contains _V[number].[number]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;STARS_DATA_Help_Needed_RULE0_BK_AUTOMATE_V1.1.sas&lt;/P&gt;&lt;P&gt;S_DATATEST_QC_RULE_1BOOK_AUT_V10.1000.sas&lt;/P&gt;&lt;P&gt;ST_DATA_TEST_QC_RULE2_BOOK_AUTO_V3.19.sas&lt;/P&gt;&lt;P&gt;HELP_STRS_DATAENG_QC_RULE_3BOOKs_MT_V1.1.sas&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 19:17:07 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156181#M13689</guid>
      <dc:creator>BuckeyeJane2</dc:creator>
      <dc:date>2023-06-29T19:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX for end of a string to contain _V1.3.sas</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156237#M13690</link>
      <description>&lt;P&gt;If you use the Regex tool with output method "Match," you get the desired result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I used the expression &lt;STRONG&gt;^.+V\d\.\d\.sas$ &lt;/STRONG&gt;to achieve this. What this means is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;"^.+" = from the beginning of the line, at least one of any character&lt;/LI&gt;&lt;LI&gt;"V\d\.\d\.sas$" = V[one digit].[one digit].sas, at the end of the line&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This gives you the result below. The two that failed were "V10.1000.sas" and "V3.19.sas" which do not meet the criteria of the expression.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;Data&lt;/STRONG&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;Data_Matched&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;STARS_DATA_Help_Needed_RULE0_BK_AUTOMATE_V1.1.sas&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;S_DATATEST_QC_RULE_1BOOK_AUT_V10.1000.sas&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;ST_DATA_TEST_QC_RULE2_BOOK_AUTO_V3.19.sas&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;HELP_STRS_DATAENG_QC_RULE_3BOOKs_MT_V1.1.sas&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 29 Jun 2023 22:27:31 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156237#M13690</guid>
      <dc:creator>Miles_Waller</dc:creator>
      <dc:date>2023-06-29T22:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: REGEX for end of a string to contain _V1.3.sas</title>
      <link>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156263#M13691</link>
      <description>&lt;P&gt;Hi, &lt;a href="https://community.alteryx.com/t5/user/viewprofilepage/user-id/358401"&gt;@BuckeyeJane2&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Maybe you can show both data table of input and output. then we can see how many numbers for you need matched .&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 00:00:46 GMT</pubDate>
      <guid>https://community.alteryx.com/t5/Alteryx-Server-Discussions/REGEX-for-end-of-a-string-to-contain-V1-3-sas/m-p/1156263#M13691</guid>
      <dc:creator>flying008</dc:creator>
      <dc:date>2023-06-30T00:00:46Z</dc:date>
    </item>
  </channel>
</rss>

