Date regex PHP

Date

Date regular expressions can be used to validate if a string has a valid date format and to extract a valid date from a string.

Simple date regex (DD/MM/YYYY)

Below is a simple regex to validate the string against a date format (D/M/YYYY or M/D/YYYY). This however does not guarantee that the date would be valid. You can also replace \\/ with a separator you need.

"/^[0-9]{1,2}\\/[0-9]{1,2}\\/[0-9]{4}$/"

Test it!
This is some text inside of a div block.

True

False

Enter a text in the input above to see the result

Example code in PHP:

// Validate if a string is a valid date format
$date_validation_regex = "/^[0-9]{1,2}\\/[0-9]{1,2}\\/[0-9]{4}$/"; 
echo preg_match($date_validation_regex, '12/12/2022'); // returns 1

// Extract date from string
$extract_date_pattern = "/[0-9]{1,2}\\/[0-9]{1,2}\\/[0-9]{4}/";
$string_to_match = 'I\'m on vacation from 1/18/2021 till 1/29/2021';
preg_match_all($extract_date_pattern, $string_to_match, $matches);
print_r($matches[0])// matches[0] is ['1/18/2021, '1/29/2021']

ISO 8061 date regex (e.g. 2021-11-04T22:32:47.142354-10:00)

The ISO 8061 is an international standard for exchanging and serializing date and time data. For validating the format of ISO 8061 date and time and for extracting it a following regular expression could be used:

"/^(?:\\d{4})-(?:\\d{2})-(?:\\d{2})T(?:\\d{2}):(?:\\d{2}):(?:\\d{2}(?:\\.\\d*)?)(?:(?:-(?:\\d{2}):(?:\\d{2})|Z)?)$/"

Test it!
This is some text inside of a div block.

True

False

Enter a text in the input above to see the result

Example code in PHP:

// Validate if a string is a valid ISO date format
$date_validation_regex = "/^(?:\\d{4})-(?:\\d{2})-(?:\\d{2})T(?:\\d{2}):(?:\\d{2}):(?:\\d{2}(?:\\.\\d*)?)(?:(?:-(?:\\d{2}):(?:\\d{2})|Z)?)$/"; 
echo preg_match($date_validation_regex, '2021-11-04T22:32:47.142354-10:00'); // returns 1

// Extract ISO date from string
$extract_date_pattern = "/(?:\\d{4})-(?:\\d{2})-(?:\\d{2})T(?:\\d{2}):(?:\\d{2}):(?:\\d{2}(?:\\.\\d*)?)(?:(?:-(?:\\d{2}):(?:\\d{2})|Z)?)/";
$string_to_match = '2017-05-23T15:02:27Z | WARN | Record not found\n2018-05-23T15:02:28Z | WARN | Project with the id \'53\' was not found';
preg_match_all($extract_date_pattern, $string_to_match, $matches);
print_r($matches[0])// matches[0] is ['2017-05-23T15:02:27Z', '2018-05-23T15:02:28Z']

Test it!
This is some text inside of a div block.

True

False

Enter a text in the input above to see the result

Notes on date string regex validation

While there are some regular expressions that allow more complex date validations, it is usually better to validate dates using special date and time libraries. For example, in PHP DateTime::createFromFormat can be used for these purposes. In this case, the validation will look like this:

function validateDate($date, $format = 'Y-m-d')
{
    $d = DateTime::createFromFormat($format, $date);
    return $d && $d->format($format) === $date;
}