joelwenzel
Programmer
- Jun 28, 2002
- 448
Can anyone tell me why this regular expression will not match.
var myRegExp = new RegExp("SelectedDate=\d{1,2}/\d{1,2}/\d{4}"
;
It is supposed to match SelectedDate=5/3/2002 or SelectedDate=12/12/2002
var myRegExp = new RegExp("SelectedDate=\d{1,2}/\d{1,2}/\d{4}"
It is supposed to match SelectedDate=5/3/2002 or SelectedDate=12/12/2002