I'm trying to read formatted data with sscanf in this format:
"%d,%d,%d"
for example,
sscanf(buffer, "%d,%d,%d", n1, n2, n3)
and it is critic that there is no white space between every number, because the input comes like this, for example:
109,304,249
194,204,482
etc.
But when I give sscanf an input like:
13, 56, 89
145, 646, 75
it still reads it even though it is not in the specifed format, and should be invalid
Is there is a way to write something such that sscanf will work as I expect it to work?
One idea to validate the input is to use the regular expression to match three integers delimited by commas without including other characters.
where
^([+-]?[[:digit:]]+,){2}[+-]?[[:digit:]]+$
is the regex:^
anchors the start of the input string.[+-]?
matches zero or one leading plus or minus sign.[[:digit:]]+,
matches the sequence of digits followed by a comma.( pattern )
makes a group of the pattern.{2}
specifies the number of repetition of the previous atom (including group).$
anchors the end of the input string.