<?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: Issues using metacharacters in Regular Expression check in ArcGIS Data Reviewer Questions</title>
    <link>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205675#M335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Dear &lt;SPAN&gt;Dan&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I am Tuan from Esri Vietnam.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I am help customer in vietnam to build table check and I using Regular Expression check. I have try to check value field name of map sheet as like this : 6636-V-DN&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;And I have try expression as :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN&gt;([0-9][0-9][0-9][0-9]-\[A-Z]-\[A-Z][A-Z])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;But it is not return the error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Moreover, when I have set some expression for other field it is work but it not check for NULL or Space value?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Please help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Many thank in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Vu Tuan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 16 Aug 2020 20:09:15 GMT</pubDate>
    <dc:creator>TuanVu_Huu</dc:creator>
    <dc:date>2020-08-16T20:09:15Z</dc:date>
    <item>
      <title>Issues using metacharacters in Regular Expression check</title>
      <link>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205672#M332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to create regular expressions using metacharacters, but either I am doing something wrong or something isn't working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;My understanding is that the results of a regular expression check will produce the records where the regular expression is not &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;matched. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As an example of what I am doing:&amp;nbsp; I have a test feature class with a field that has 16 of the same value (ACEC), 2 of another &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(Inholding) and 2 nulls. I think that using the expression ^[AC] should produce the records that do not begin with "AC".&amp;nbsp; Thus, &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;there should be 4 records in the results (the 2 "Inholding" and 2 nulls).&amp;nbsp; Instead the check results show all 20 records.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have tried this with a variety of metacharacters, and have had no luck with any.&amp;nbsp; Is there something that I am not doing &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;correctly, or am I misunderstanding how to use these characters in a regular expression query?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;katie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 15:54:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205672#M332</guid>
      <dc:creator>KatieMcHugh1</dc:creator>
      <dc:date>2013-01-28T15:54:52Z</dc:date>
    </item>
    <item>
      <title>Re: Issues using metacharacters in Regular Expression check</title>
      <link>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205673#M333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Katie,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Please construct the following regular expression:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;AC[A-Za-z]*&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What happens?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dan&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 18:31:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205673#M333</guid>
      <dc:creator>DanHopkins</dc:creator>
      <dc:date>2013-01-30T18:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issues using metacharacters in Regular Expression check</title>
      <link>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205674#M334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dan,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry for my delayed response, I've been out for a few days.&amp;nbsp; That did what I wanted.&amp;nbsp; Is there any chance you could deconstruct &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;that for me so I understand how each of the characters are functioning?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;katie&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Feb 2013 15:25:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205674#M334</guid>
      <dc:creator>KatieMcHugh1</dc:creator>
      <dc:date>2013-02-08T15:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issues using metacharacters in Regular Expression check</title>
      <link>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205675#M335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;Dear &lt;SPAN&gt;Dan&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I am Tuan from Esri Vietnam.&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;I am help customer in vietnam to build table check and I using Regular Expression check. I have try to check value field name of map sheet as like this : 6636-V-DN&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;And I have try expression as :&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN&gt;([0-9][0-9][0-9][0-9]-\[A-Z]-\[A-Z][A-Z])&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;But it is not return the error.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Moreover, when I have set some expression for other field it is work but it not check for NULL or Space value?&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Please help!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Many thank in advance!&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; border: 0px;"&gt;&lt;SPAN style="background: white; border: 0px; font-weight: inherit; font-size: 11.5pt;"&gt;Vu Tuan&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 16 Aug 2020 20:09:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-data-reviewer-questions/issues-using-metacharacters-in-regular-expression/m-p/205675#M335</guid>
      <dc:creator>TuanVu_Huu</dc:creator>
      <dc:date>2020-08-16T20:09:15Z</dc:date>
    </item>
  </channel>
</rss>

