Home > Web Front-end > JS Tutorial > body text

How to Create a Regular Expression for Date Validation in DD/MM/YYYY Format in JavaScript?

DDD
Release: 2024-10-20 14:42:02
Original
239 people have browsed it

How to Create a Regular Expression for Date Validation in DD/MM/YYYY Format in JavaScript?

Regular Expression for Date Validation in DD/MM/YYYY Format

Validating dates in Javascript is a common task, and ensuring proper validation for dates in the DD/MM/YYYY format is crucial. While there are numerous regex expressions available, finding the specific pattern for this format can be challenging.

Originally, the regex provided above was intended for YYYY-MM-DD format. To convert it for DD/MM/YYYY, simply flip the order of the day and month components:

/(0?[1-9]|[12][0-9]|3[01])[\/\-](0?[1-9]|1[012])[\/\-]\d{4}$/
Copy after login

This regex now validates dates in the DD/MM/YYYY format, allowing both slashes (/) and dashes (-) as separators. However, it's important to note that this will also allow dates that do not adhere to calendar rules (e.g., 31/02/4899).

The above is the detailed content of How to Create a Regular Expression for Date Validation in DD/MM/YYYY Format in JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

source:php
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!