Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to find dates in a string in js

var str = 'Test  Client wants to reschedule your call from 2021-02-18 06:30:00+00:00 to 2021-02-18T07:00';

var res = str.match(/d{2}([/.-])d{2}1d{4}/g);

document.getElementById('out').value = res;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #find #dates #string #js
ADD COMMENT
Topic
Name
2+9 =