Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
86
rated 0 times [  90] [ 4]  / answers: 1 / hits: 19240  / 12 Years ago, mon, july 9, 2012, 12:00:00

I have a stopwatch variable that can get value in the following format:
HH:MM:SS most of the time. 'HH' can go past 24 hours - basically any valid number.



I am not that good with this regex thingy, but was able to write something that is good for most part but fails to validate if the hour is single digit. Ex. below regex pass the time 1:10:09, though it is invalid. valid hour part should be 01.



//var stopWatchTime = '02:10:09'; //Valid
//var stopWatchTime = '00:10:09'; //Valid
//var stopWatchTime = '1234:10:09'; //Valid
//var stopWatchTime = ':10:09'; //Invalid
//var stopWatchTime = 'ax:10:09'; //Invalid
var stopWatchTime = '1:10:09'; //Invalid, should be 01:10:09.

if(!stopWatchTime .match(/^d+:d{2}:d{2}$/)){
alert('invalid time- ' + stopWatchTime);
}
else{
alert('valid time - ' + stopWatchTime);
}


What should I change in the regex to say it should check for any number but should have 2 digits or more in hour part?


More From » jquery

 Answers
15
/^d{2,}:d{2}:d{2}$/


Change the + to a {2,} to allow it to have two or more characters



If you want to see the things that matches and doesn't match you can play with it here http://regexr.com?31fu4



EDIT:
Also if you only want to match up to 59 in the hours/minutes part use



^d{2,}:(?:[0-5]d):(?:[0-5]d)$

[#84374] Sunday, July 8, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
janjadonb

Total Points: 4
Total Questions: 114
Total Answers: 118

Location: Mali
Member since Fri, Dec 3, 2021
3 Years ago
janjadonb questions
;