1. Extracting Dates from Text
Data AnalystBackground
You have a dataset with date strings in YYYY-MM-DD format that need to be parsed into components.
Problem
Manually splitting date strings is inefficient and prone to errors.
How to use
Enter the regex pattern (?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2}) and paste the date strings into the text input.
Pattern: (?<year>\d{4})-(?<month>\d{2})-(?<day>\d{2}), Flags: gOutcome
Each date is parsed into named groups year, month, and day, displayed in a table for easy review or export.