Common uses of sscanf

Source: Internet
Author: User
Tags uppercase letter

Example:
1. Common usage.
char buf[512] =;
sscanf ("123456", "%s", buf);
printf ("%s\n", buf);
The result is: 123456
2. Take a string of the specified length. As in the following example, take a string with a maximum length of 4 bytes.
sscanf ("123456", "%4s", buf);
printf ("%s\n", buf);
The result is: 1234
3. The string to take to the specified character. As in the following example, the string is encountered until the space is met.
sscanf ("123456 Abcdedf", "%[^]", buf);
printf ("%s\n", buf);
The result is: 123456
4. Take a string that contains only the specified character set. As in the following example, take a string that contains only 1 to 9 and lowercase letters.
sscanf ("123456abcdedfBCDEF", "%[1-9a-z]", buf);
printf ("%s\n", buf);
The result is: 123456ABCDEDF
5. The string to be taken to the specified character set. As in the following example, take a string that encounters an uppercase letter.
sscanf ("123456abcdedfBCDEF", "%[^a-z]", buf);
printf ("%s\n", buf);
The result is: 123456ABCDEDF
6, given a string iios/[email protected], gets/And the string between @, first filter out "iios/", and then send a string of non-' @ ' to buf
sscanf ("Iios/[email protected", "%*[^/]/%[^@]", buf);
printf ("%s\n", buf);
The result is: 12DDWDFF
7, given a string "" Hello, World ", only keep the world. (Note: "," followed by a space)
sscanf ("Hello, World", "%*s%s", buf);
printf ("%s\n", buf);
The result: World
%*s indicates that the first match to the%s is filtered out, that is, Hello is filtered
If there are no spaces, the result is null.
the SSCANF function is very similar to regular expressions, but there is no strong regular expression, so it is recommended to use regular expressions for more complex string handling.
//-------------------------------------------------------
sscanf, which represents the formatting of input from a string
The above means that from STR, the input number to X is 32700
long ago, I thought C had no own split string function, and then I found sscanf; all along, I thought sscanf could only delimit strings with spaces, and now I find I'm wrong.
SSCANF is a run-time function, and the prototype is simple:
int sscanf (
const char *buffer,
const char *format [,
argument] ...
);
its powerful capabilities are reflected in the support for format.
I used to use it to separate strings like this 2006:03:18:
int A, b, C;
sscanf ("2006:03:18", "%d:%d:%d", A, B, c);
and 2006:03:18-2006:04:18:
char sztime1[16] = "", sztime2[16] = "";
sscanf ("2006:03:18-2006:04:18", "%s-%s", sztime1, sztime2);
but then, I need to deal with 2006:03:18-2006:04:18.
just canceled the '-' on both sides of the space, but broke the%s of the definition of the string.
do I need to redesign a function to handle such a situation? It's not complicated, but, in order to have a uniform style for all of the code, I need to change a lot of places to replace the existing sscanf with my own split function. I thought I must have done it, and slept with a strong dissatisfaction with sscanf, waking up and finding it unnecessary.
a Type field such as%[] in Format-type. If you read a string that is not delimited by a space, you can use%[].
%[] is similar to a regular expression. [A-z] means reading all characters A-Z, [^a-z] means reading all characters except A-Z.
so the problem is solved:
sscanf ("2006:03:18-2006:04:18", "%[0-9,:]-%[0-9,:]", sztime1, sztime2);

Common uses of sscanf

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.