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 #4: Date Parsing

DylanBell
10 - Fireball

Tried to do it all in one statement but ended up having to split it up in the end, good reminder for regex!


Bulien
FlaviaNC_21
7 - Meteor

Hello! This is my solution for this challenge 😎

 

Spoiler
Workflow Challenge 0004.png

Dhrish
8 - Asteroid

Solution

lley124
7 - Meteor

Here is my solution. 

skichiban
5 - Atom

Solution attached!

Salum0405
8 - Asteroid

Here is my solution, this one was very hard for me:

Spoiler
Salum0405_0-1753729532675.png

 

 

JPalay
6 - Meteoroid

Not too efficient but i got there

icchung
8 - Asteroid

After REGEX, I went straight to converting the values into date format.

icchung_0-1758828251490.png

 

jrlindem
12 - Quasar

Tricky, tricky.  Getting better with Regex.  Had never used the Regex "or" syntax before!

 

Here's my regex:

 

Spoiler
.*(\d\d-[[:alpha:]]+-\d+).* | .*(\d-[[:alpha:]]+-\d+).* | .* ([[:alpha:]]+ \d\d, \d\d\d\d).* | .* ([[:alpha:]]+ \d+ \d+).*

Here's my solution:

 

Spoiler
jrlindem_0-1759526804866.png

 

Garrett_Stoker
8 - Asteroid
Spoiler
Screenshot 2025-10-16 141125.png