Parsing a string
Parse string: sscanf()
With sscanf()
function you can parse a string following a well known pattern.
For example, think about the ISBN code. The ISBN code is the code identifier for books, it is 13 chars long and it is defined as:
- first 3 digits are the Ean code;
- then a separator with -;
- 1 digit for group;
- then a separator with -;
- 3 digits for publisher;
- then a separator with -;
- 5 digits for the title;
- then a separator with -;
- 1 digit for check.
An example is : โ978-0-596-52068-7โ
If you want to parse the ISBN code and extract the parts you can use the sscanf()
function. The sscanf()
function has at least 2 parameters:
- the first parameter is the string to parse (โ978-0-596-52068-7โ)
- the second parameter is the pattern, composed with some placeholders. For example with %d you can decalre a digit. In the case of isbn you can specify:
"%d-%d-%d-%d-%d"
that it means : a number followed by the-
char, another number followed by the-
char, another number followed by the-
char, another number followed by the-
char, another number followed by the-
char.