<?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: UK Address Regex Expression in Blue Prism in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77379#M29622</link>
    <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;The regex example I sent you was for a postcode. Not an actual line of address, I really don't think you will manage a Regex to deal specifically with addresses. Also, this isn't actually Blue Prism, this is Regex or Regular Expressions. We just have a method of making use of them. They are a little obtuse to work with until you understand how the different parts work. If you want to learn regex you might want to take a look here, &lt;A href="https://regexone.com/" target="_blank" rel="noopener"&gt;https://regexone.com/&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;I hope this helps you accomplish your goals.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;
&lt;STYLE&gt;&lt;/STYLE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Geoff Hirst&lt;BR /&gt;Senior DX Engineer - Digital Exchange - EMEA&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 25 Jan 2023 16:04:00 GMT</pubDate>
    <dc:creator>GeoffHirst</dc:creator>
    <dc:date>2023-01-25T16:04:00Z</dc:date>
    <item>
      <title>UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77372#M29615</link>
      <description>&lt;SPAN&gt;Hello - I am currently dealing with address validation where I have to compare two addresses and check if they match.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The complex part is that the addresses can have the word 'St' in one address and 'Street' in another - but it still needs to be considered a match. Below is an example of such a scenario. Please let me know if you guys have any ideas on how to get around this problem. Using this expression (?&amp;lt;=Address: )....&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Scenarios:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;71 Cherry St&lt;BR /&gt;SOUTHAMPTON &lt;BR /&gt;SO53 5PD&lt;BR /&gt;&lt;/SPAN&gt;
&lt;DIV class="section steps steps_first sticky stuck"&gt;
&lt;DIV id="steps_1" class="section_text"&gt;
&lt;DIV class="clearall"&gt;&lt;BR /&gt;71 Cherry Street&lt;BR /&gt;Southampton SO53 5PD&lt;BR /&gt;England&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;SPAN&gt;Please let me know if you have any questions. Thanks in advance!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Brittany Harding&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 09:29:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77372#M29615</guid>
      <dc:creator>BrittanyHarding</dc:creator>
      <dc:date>2023-01-25T09:29:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77373#M29616</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="e1709e63-89c0-4003-b7eb-0184c6ff70dd" data-tag-text="@Brittany Harding" href="https://community.blueprism.com/network/profile?UserKey=e1709e63-89c0-4003-b7eb-0184c6ff70dd" data-itemmentionkey="365528c8-1f35-41db-ae4f-f435a36dd4e9"&gt;@Brittany Harding&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Have you tried using comparing the string loosely? E.g. InStr(Lower([Address]), "71 cherry st")&amp;gt;0&lt;BR /&gt;&lt;BR /&gt;You could also do this based on the condition that the postcode matches, for example if the postcode is a match then you compare the street to make sure the house number is correct. ​So you could create the process to do a decision based on InStr(Lower([Address]), [PostCode])&amp;gt;0 and where true then you would compare the second part InStr(Lower([Address]), "71 cherry st")&amp;gt;0&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael ONeil&lt;BR /&gt;Technical Lead developer&lt;BR /&gt;NTTData&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 13:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77373#M29616</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2023-01-25T13:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77374#M29617</link>
      <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;Thank you for being a SS&amp;amp;C Customer and for using Blue Prism.&lt;BR /&gt;&lt;BR /&gt;It sounds like you have more of a regex issue than a Blue Prism issue. After a quick refer to my favourite regex site I found this collection that may help you. &lt;A href="https://regexlib.com/Search.aspx?k=street&amp;amp;AspxAutoDetectCookieSupport=1" target="_blank" rel="noopener"&gt;https://regexlib.com/Search.aspx?k=street&amp;amp;AspxAutoDetectCookieSupport=1&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Take a look and if you still have questions, come back to me and I will see what else I can find to help.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Geoff Hirst&lt;BR /&gt;Senior DX Engineer - Digital Exchange - EMEA&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 13:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77374#M29617</guid>
      <dc:creator>GeoffHirst</dc:creator>
      <dc:date>2023-01-25T13:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77375#M29618</link>
      <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;If it is a regex you are needing, try this. \d+[ ](?:[A-Za-z0-9.-]+[ ]?)+(?:Avenue|Lane|Road|Boulevard|Drive|Street|Park|Ave|Dr|Rd|Blvd|Ln|St|Pk)\.?&lt;BR /&gt;&lt;BR /&gt;You can add in any others you need to match against.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Geoff Hirst&lt;BR /&gt;Senior DX Engineer - Digital Exchange - EMEA&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 14:12:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77375#M29618</guid>
      <dc:creator>GeoffHirst</dc:creator>
      <dc:date>2023-01-25T14:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77376#M29619</link>
      <description>That is exactly what I am looking for. I need to Extract the following below (name, address and telephone have been changed and used as an example) to a Collection nothing seems to work for me.
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28023.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28154i6E9B2CE19C4CEE69/image-size/large?v=v2&amp;amp;px=999" role="button" title="28023.png" alt="28023.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV style="text-align: center;"&gt;FORD CLAYS MEDICAL CENTRE&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;Address:&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;CRAMMDALE STREET&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;FORD CLAYS&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;GRAYS&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;ESSEX&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;RM16 2UJ&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;Telephone:&lt;/DIV&gt;
&lt;DIV style="text-align: center;"&gt;01375 800888&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Brittany Harding&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 14:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77376#M29619</guid>
      <dc:creator>BrittanyHarding</dc:creator>
      <dc:date>2023-01-25T14:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77377#M29620</link>
      <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;I am not sure if you still need help with this or not. &lt;BR /&gt;&lt;BR /&gt;If you need a postcode regex, this is a bit hard to follow but pretty much catches all the bases including the old Girobank postcode which I don't think exists anymore as it was sold to Santander, but here goes.&lt;BR /&gt;&lt;BR /&gt;^(?:(?:[A-PR-UWYZ][0-9]{1,2}|[A-PR-UWYZ][A-HK-Y][0-9]{1,2}↵&lt;BR /&gt;|[A-PR-UWYZ][0-9][A-HJKSTUW]|[A-PR-UWYZ][A-HK-Y][0-9]↵&lt;BR /&gt;[ABEHMNPRV-Y])●[0-9][ABD-HJLNP-UW-Z]{2}|GIR 0AA)$&lt;BR /&gt;&lt;BR /&gt;I haven't tried but it might work if you remove the |GIR 0AA bit near the end. This was the Girobank postcode of years ago.&lt;BR /&gt;&lt;BR /&gt;If you need something to match phone numbers you might want to peruse the offerings on regexlib &lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://regexlib.com/Search.aspx?k=uk%20telephone" target="_blank" rel="noopener"&gt;https://regexlib.com/Search.aspx?k=uk%20telephone&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you for using Blue Prism&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;&lt;BR /&gt;
&lt;STYLE&gt;&lt;/STYLE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Geoff Hirst&lt;BR /&gt;Senior DX Engineer - Digital Exchange - EMEA&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 15:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77377#M29620</guid>
      <dc:creator>GeoffHirst</dc:creator>
      <dc:date>2023-01-25T15:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77378#M29621</link>
      <description>This expression (?&amp;lt;=)([A-Z]+[\n ]+[A-Z]+[\n ]*)([\n ]*[A-Z]+)* works for '&lt;SPAN&gt;FORD CLAYS MEDICAL CENTRE' but the expression ^(?:(?:[A-PR-UWYZ][0-9]{1,2}|[A-PR-UWYZ][A-HK-Y][0-9]{1,2}↵&lt;BR /&gt;|[A-PR-UWYZ][0-9][A-HJKSTUW]|[A-PR-UWYZ][A-HK-Y][0-9]↵&lt;BR /&gt;[ABEHMNPRV-Y])●[0-9][ABD-HJLNP-UW-Z]{2}|GIR 0AA)$ for the&amp;nbsp;&lt;BR /&gt;address. The link was helpful for the Telephone number THANK YOU!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Brittany Harding&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 15:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77378#M29621</guid>
      <dc:creator>BrittanyHarding</dc:creator>
      <dc:date>2023-01-25T15:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77379#M29622</link>
      <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;The regex example I sent you was for a postcode. Not an actual line of address, I really don't think you will manage a Regex to deal specifically with addresses. Also, this isn't actually Blue Prism, this is Regex or Regular Expressions. We just have a method of making use of them. They are a little obtuse to work with until you understand how the different parts work. If you want to learn regex you might want to take a look here, &lt;A href="https://regexone.com/" target="_blank" rel="noopener"&gt;https://regexone.com/&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;I hope this helps you accomplish your goals.&lt;BR /&gt;&lt;BR /&gt;regards&lt;BR /&gt;
&lt;STYLE&gt;&lt;/STYLE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Geoff Hirst&lt;BR /&gt;Senior DX Engineer - Digital Exchange - EMEA&lt;BR /&gt;SS&amp;amp;C Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 16:04:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77379#M29622</guid>
      <dc:creator>GeoffHirst</dc:creator>
      <dc:date>2023-01-25T16:04:00Z</dc:date>
    </item>
    <item>
      <title>RE: UK Address Regex Expression in Blue Prism</title>
      <link>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77380#M29623</link>
      <description>Hi Brittany,&lt;BR /&gt;&lt;BR /&gt;Here at Norfolk County Council we use a mix of two different sources for address validation, you may also be able to use this or something similar.&lt;BR /&gt;&lt;BR /&gt;Rather than regex the address, we submit a query to Ordnance Survey containing the full address - &lt;A href="https://osdatahub.os.uk/docs/places/technicalSpecification" target="test_blank"&gt;https://osdatahub.os.uk/docs/places/technicalSpecification&lt;/A&gt; which then returns a list of addresses and also a "match" value, which can then be used to figure out if the address provided is a good match or not.&lt;BR /&gt;&lt;BR /&gt;W also use postcodes.io for specifically postcodes as this service allows formatting for postcodes with spaces, or without and also uppercase / lowercase. It also returns some extended information about a postcode that Ordnance Survey does not return.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jordan Harvey&lt;BR /&gt;Developer&lt;BR /&gt;Norfolk County Council&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Jan 2023 17:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/UK-Address-Regex-Expression-in-Blue-Prism/m-p/77380#M29623</guid>
      <dc:creator>jordan.harvey.norfolkcc</dc:creator>
      <dc:date>2023-01-25T17:14:00Z</dc:date>
    </item>
  </channel>
</rss>

