Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEAthis was fun to figure out
My (not so pretty) solution:
Used the formula tool to do a lot of functions I would have used separate tools for (eg Regex and DateTime). This was great practice for functions I was hesitant to use until now!
Just a note for future me in case I forget. The function to do Regex parsing using the Formula tool is:
Regex_Replace([String],"(The group we want in the regex expression)", "$1")
The "$1" is what tells it to choose the first group