I need to figure out how to write the regular expression for the following example.
Sep 21, Thursday, 6:00PM,
Please note that the Month, Date, Day, and Time will change but will remain in the same format.
I need it similar to this Date example:
. Extracting Dates in YYYY-MM-DD
Format
Pattern: (\d{4}-\d{2}-\d{2})
Thanks in advance