Start Free Trial

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 #211: Generating Email Addresses

SylwiaDragon
8 - Asteroid

Done

RobbieA
8 - Asteroid

Solution for 211!

Spoiler
RobbieA_0-1647452134448.png

 

BSilverblatt
8 - Asteroid

Thanks for the challenge! Here's my solution:

SPetrie
13 - Pulsar

Fun challenge

Spoiler
SPetrie_0-1649183493495.png

 

MCooper
8 - Asteroid
Spoiler
211.PNG
DanielvanLeuzen
9 - Comet

my solution

okimoto001
7 - Meteor

done

TonyAndriani
9 - Comet

Reposting under my new user ID.

mpennington
11 - Bolide

Nice exercise, but doing this in real life there would be the challenge of dealing with individuals with the same first initial and last name. I tested for it, but it didn't exist in this dataset.  

 

Spoiler
MP 211.jpg

Formula I used to create the emails once I tokenized the users. 
Uppercase(REGEX_Replace([Users], '(\w)(\w+)\s*(\w*)\s([A-z]*)(\d+)', '$1'))
+REGEX_Replace([Users], '(\w)(\w+)\s*(\w*)\s([A-z]*)(\d+)', '$4@testemail.com')​
FrederikE
13 - Pulsar
Spoiler
FrederikE_0-1651518735171.png