Regular Expression for hour
-
Hi, i need regular expression to validate the hour, what i need is a format like this: 08:00:00 (hours, minutes and seconds). Im using this formatting but its not working, any ideas?? strFormat = @"^\d{2}\:\d{2}\:\d{2}\$"; thanks in advance...
-
Hi, i need regular expression to validate the hour, what i need is a format like this: 08:00:00 (hours, minutes and seconds). Im using this formatting but its not working, any ideas?? strFormat = @"^\d{2}\:\d{2}\:\d{2}\$"; thanks in advance...
one another thing this pattern will match somthing like 80:90:95 because you din't specify the range for valid hour,minuts,seconds MCAD
-
one another thing this pattern will match somthing like 80:90:95 because you din't specify the range for valid hour,minuts,seconds MCAD
-
Hi, i need regular expression to validate the hour, what i need is a format like this: 08:00:00 (hours, minutes and seconds). Im using this formatting but its not working, any ideas?? strFormat = @"^\d{2}\:\d{2}\:\d{2}\$"; thanks in advance...