I have written an regex with the help of Expresso. It matches all my samples so I copied it into my JavaScript code. There it doesn't match one of my examples, but why?
RegEx:
^(\d{1,2}):?(\d\d)?\s*-\s*(\d{1,2}):?(\d\d)?$
Should match:
10-12
10:00-12:00
1000-1200
In JavaScript 10:00-12:00 doesn't work for me in all browsers like IE9, Chrome, Firefox. Any ideas?
Update (JavaScript Code): input.match(/^(\d{1,2}):?(\d\d)?\s*-\s*(\d{1,2}):?(\d\d)?$/);
Update (solved): Due some prefiltering the code never got reached. Sorry for that!