What would the regex string expression be for the following date formats?
09 Jan 2012
09/01/2012
No minimum or max. I have a javascript file which stores all regex’s, such as:
var saNumberRegEx = /(^0[87][23467]((\d{7})|( |-)((\d{3}))( |-)(\d{4})|( |-)(\d{7})))/;
var tagNameRegEx = /^[a-z0-9][-\.a-z0-9]{4,29}$/i;
Thank you
Edit:
Sample 1
Sample 2