<?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: Mapping data in Data Verification in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71964#M24569</link>
    <description>Hey Ben thanks for getting back. Yes the dates are in a constant format on the invoices however i am not familiar with Regex. How would i use this ?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nebie Paulos&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 19 Nov 2021 07:03:00 GMT</pubDate>
    <dc:creator>NebiePaulos</dc:creator>
    <dc:date>2021-11-19T07:03:00Z</dc:date>
    <item>
      <title>Mapping data in Data Verification</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71962#M24567</link>
      <description>&lt;SPAN&gt;Hey all,&lt;BR /&gt;So im on data verification working with invoices however I cant seem to get Decipher to identify the Invoice Date because its respective box doesn't only include the date but also other sections. As of right now, when i hover over the invoice date it is highlighting a large box that includes different sections (acct#, tax#, and the date) all in one box. I would have to crop the box to only capture the date and then do that for all the documents. I tried doing this over and over to train decipher to locate the correct data but it doesn't seem to fix this.&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a way to fix this mapping situation? Maybe the problem is somewhere in the DFD...&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nebie Paulos&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Nov 2021 00:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71962#M24567</guid>
      <dc:creator>NebiePaulos</dc:creator>
      <dc:date>2021-11-18T00:20:00Z</dc:date>
    </item>
    <item>
      <title>RE: Mapping data in Data Verification</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71963#M24568</link>
      <description>Hi Nebie,&lt;BR /&gt;&lt;BR /&gt;Are the dates in a consistent format? If so you could use the Format Expression to help better define the data you need to read. This is done via Regex, are you familiar with this?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ben Lyons&lt;BR /&gt;Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;UK&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Nov 2021 10:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71963#M24568</guid>
      <dc:creator>Ben.Lyons1</dc:creator>
      <dc:date>2021-11-18T10:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Mapping data in Data Verification</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71964#M24569</link>
      <description>Hey Ben thanks for getting back. Yes the dates are in a constant format on the invoices however i am not familiar with Regex. How would i use this ?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nebie Paulos&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Nov 2021 07:03:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71964#M24569</guid>
      <dc:creator>NebiePaulos</dc:creator>
      <dc:date>2021-11-19T07:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: Mapping data in Data Verification</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71965#M24570</link>
      <description>Hi Nebie,&lt;BR /&gt;&lt;BR /&gt;No problem.&lt;BR /&gt;&lt;BR /&gt;Regex is short for Regular Expression and it's kind of a "short hand" for representing characters in a specific format. Here's a couple of websites which can help you learn more about it/test your ideas.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.regular-expressions.info/tutorial.html" target="_blank" rel="noopener"&gt;Training&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://regex101.com/" target="_blank" rel="noopener"&gt;Tester&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;But for a date in the format dd/mm/yyyy, you would use something like
&lt;PRE class="default s-code-block"&gt;&lt;CODE class="hljs language-scss"&gt;^(&lt;SPAN class="hljs-number"&gt;0&lt;/SPAN&gt;?[&lt;SPAN class="hljs-number"&gt;1&lt;/SPAN&gt;-&lt;SPAN class="hljs-number"&gt;9&lt;/SPAN&gt;]|[&lt;SPAN class="hljs-number"&gt;12&lt;/SPAN&gt;][&lt;SPAN class="hljs-number"&gt;0&lt;/SPAN&gt;-&lt;SPAN class="hljs-number"&gt;9&lt;/SPAN&gt;]|&lt;SPAN class="hljs-number"&gt;3&lt;/SPAN&gt;[&lt;SPAN class="hljs-number"&gt;01&lt;/SPAN&gt;])&lt;SPAN class="hljs-selector-attr"&gt;[\/\-]&lt;/SPAN&gt;(&lt;SPAN class="hljs-number"&gt;0&lt;/SPAN&gt;?[&lt;SPAN class="hljs-number"&gt;1&lt;/SPAN&gt;-&lt;SPAN class="hljs-number"&gt;9&lt;/SPAN&gt;]|&lt;SPAN class="hljs-number"&gt;1&lt;/SPAN&gt;[&lt;SPAN class="hljs-number"&gt;012&lt;/SPAN&gt;])&lt;SPAN class="hljs-selector-attr"&gt;[\/\-]&lt;/SPAN&gt;\d{4}$&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;Examples like this can be found via Google, but it's quite generic and may find strange examples like 31/02/4200. In most cases that shouldn't be a problem, but you'll find out when testing.&lt;BR /&gt;&lt;BR /&gt;You would copy and paste the value above into the Format Expression field for your date and this would raise an error when a value is selected that isn't in this format.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ben Lyons&lt;BR /&gt;Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;UK&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 19 Nov 2021 08:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Mapping-data-in-Data-Verification/m-p/71965#M24570</guid>
      <dc:creator>Ben.Lyons1</dc:creator>
      <dc:date>2021-11-19T08:13:00Z</dc:date>
    </item>
  </channel>
</rss>

