Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to find date in a string js

var str = 'On the 03/09/2015 I am swiming in a pool, that was build on the 27-03-1994';

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

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