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

Vishnu_Sekhar
7 - Meteor

Since my RegEx skills are below par, I reviewed other solutions to develop mine. 

EFos
8 - Asteroid
Spoiler
EFos_0-1637899267929.png

 

YuriTchong
7 - Meteor

Well, this was educational.

emjiang
8 - Asteroid

use regex

Spoiler
emjiang_0-1637986541759.png

 

DanijelDjordjic
7 - Meteor

solution

DanijelDjordjic
7 - Meteor

.

EdoardoAversaTIL
8 - Asteroid
Spoiler
cha 54 solution.png

Harrylosborne
8 - Asteroid
Spoiler
Harrylosborne_0-1638195220051.png

 

jon_amanrich
8 - Asteroid

Solution to challenge 54 hereafter!

Spoiler
jon_amanrich_0-1638287916784.png

2 Regex parse to get State : (\d+)\s(.*)\s([A-Z][A-Z]) and Zip Code: .*\s(\d+)
Select to remove unwanted fields
2 more regex parse to get the city: .*\s(\w+) and .*\s(\w+\s\w+)
2 select recors after my regex to keep the right City names 
Union of my outputs

Robinvm
8 - Asteroid

Solved