Related to Regex pattern for HH:MM:SS time string I am trying to validate user time input.
int main(int argc, char *argv[]){
regex_t regex;
int reti;
char msgbuf[100];
char inputStr2[100]="12:34:04";
char inputStr[100]="12:34";
/* Compile regular expression */
reti = regcomp(®ex, "^((([01]?[0-9]|2[0-3]):)?([0-5]?[0-9]):)?([0-5]?[0-9])$", 0);
if( reti ){
fprintf(stderr, "Could not compile regex\n");
}
/* Execute regular expression */
printf("%s is the string\n",inputStr);
reti = regexec(®ex, inputStr, 0, NULL, 0);
if( !reti ){
puts("Match");
}
else if( reti == REG_NOMATCH ){
puts("No match");
}
else{
regerror(reti, ®ex, msgbuf, sizeof(msgbuf));
fprintf(stderr, "Regex match failed: %s\n", msgbuf);
}
printf("%s is the string\n",inputStr2);
reti = regexec(®ex, inputStr2, 0, NULL, 0);
if( !reti ){
puts("Match");
}
else if( reti == REG_NOMATCH ){
puts("No match");
}
else{
regerror(reti, ®ex, msgbuf, sizeof(msgbuf));
fprintf(stderr, "Regex match failed: %s\n", msgbuf);
}
/* Free compiled regular expression if you want to use the regex_t again */
regfree(®ex);
return 0;
}
- i get the error unknown escape sequence '\d'.
whats wrong here? Is this the best way to go about validating user time input?.
Edit:
Tried with "^(?:(?:([01]?\\d|2[0-3]):)?([0-5]?\\d):)?([0-5]?\\d)$" and i get a no match.
Also with
24:00:00(midnight at the end of the day), or23:59:60(leap second). And that's assuming that you only want to support times down to second precision. – Michael Kjörling Feb 24 '12 at 10:05strptime(%T)– J.F. Sebastian Feb 24 '12 at 11:25\danymore, so I guess the error message you posted is not the actual error message you're currently getting. Can you tell us the real problem? – Tim Pietzcker Feb 28 '12 at 12:04