This tool extracts all dates in DD/MM/YYYY format from your text. It provides flexible options so you can extract every date in this format, extract only dates that match specified substrings, extract all except those containing specified substrings, or format the extracted dates using a custom format. Simply enter your text and select the extraction mode that suits your needs.
Examples:
Extract All Dates
Every date in DD/MM/YYYY format is extracted.
Before:
The event is on 25/12/2023 and the next one is on 01/01/2024.
After:
25/12/2023 01/01/2024
Extract Only Dates Matching Specified Substrings
Only extracts dates containing the specified substring (e.g., "2023").
Before:
Important dates: 25/12/2023, 15/11/2022, and 01/01/2024.
After (specifying "2023"):
25/12/2023
Extract All Except Dates Containing Specified Substrings
Extracts every date except those containing the specified substring (e.g., "15/11/2022").
Before:
Important dates: 25/12/2023, 15/11/2022, and 01/01/2024.
After (excluding "15/11/2022"):
25/12/2023 01/01/2024
Extract Dates with Custom Format
Each extracted date is formatted using a custom format (e.g., wrapping in square brackets).
Before:
Deadline: 25/12/2023.
After (format "[{date}]"):
[25/12/2023]