Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #54: Data Prep Address Parsing

A_Twa
8 - Asteroid

This one was a tough one for me - RegEx is not something I'm very proficient at (yet!).

MsBindy
8 - Asteroid

I parsed using the named groups with words Circle, Street, Road, etc.  For some reason had huge problems with Ave, Avenue, and Road...but eventually through trial and error got those words to work.

nick_ceneviva
11 - Bolide

Solution attached.  Couldn't seem to get the RegEx formula right to handle the street information, so I used a text input tool to replace the street (road, ave, etc) with a "|".  Then used RegEx match in the filter tool to handle the records with zip codes differently from the ones without.

Elena_Caric
8 - Asteroid

My Solution 

Natasha
9 - Comet

Here is my solution. City parsing works for this records, but I think it might be unreliable for other possible address combinations.

 

Spoiler
Screen Shot 2017-08-27 at 12.08.49.png

 

jamielaird
14 - Magnetar

Here's my solution.

 

Spoiler
challenge_54.png
patrick_digan
17 - Castor
17 - Castor
Spoiler
I ended up using the Invisio Geocoder (which runs through Google) then the reverse geocoder (Alteryx macro) and then the parse address tool.
Capture.PNG
marcreid
7 - Meteor

Solution

Spoiler
image.png
dominiklz
8 - Asteroid
Spoiler
54.PNG

RegEx: (^\d+) (\w+ \w+|\w+ \w+ \w+) (\w+|\w+ \w+) (\w{2})( \d{5}$|$)

took a lot of testing, but managed to get all information parsed out correctly using just one RegEx tool

samN
10 - Fireball

Simple Parsing.