1. Convert Date Formats
Software DeveloperBackground
Working with server logs that contain dates in ISO format (YYYY-MM-DD).
Problem
Need to change dates to US format (MM/DD/YYYY) for a compliance report.
How to use
Enter the log text, set pattern to `\b(\d{4})-(\d{2})-(\d{2})\b`, and replacement to `$2/$3/$1`.
Outcome
Dates are converted, and the diff view shows all changes clearly.