sscanf with multiple spaces?
- by jamall55
Hi.
sscanf(text, "%s %s", name, company);
parses 'ian mceknis' but it also parses 'ian mceknis' and so on. How can i make this to parse only the first one? It must contain only one space not more.
Thank you.