Open In App

How to extract date from a string in dd-mmm-yyyy format in JavaScript ?

Last Updated : 18 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

In this article, we will see how to extract date from a given string of format "dd-mmm-yyyy" in JavaScript. We have a string, and we want to extract the date format "dd-mmm-yyyy" from the string.

Example:

// String
str = "India got freedom on 15-Aug-1947"

// Extracted date from given string in
// "dd-mmm-yyyy" format
date = 15-Aug-1947

Approach:

  • There is no native format in JavaScript for" dd-mmm-yyyy". To get the date format "dd-mmm-yyyy", we are going to use regular expression in JavaScript. 
  • The regular expression in JavaScript is used to find the pattern in a string. So we are going to find the "dd-mmm-yyyy" pattern in the string using the match() method.

Syntax:

str.match(/\d{2}-(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)-\d{4}/gi);

Example: This example shows the use of the above-explained approach.

HTML
JavaScript

Output:

extract date from a string in dd-mmm-yyyy format

Next Article

Similar Reads