Analyzing Strings with sscanf
Analyzing Strings with sscanf
The counterpart or "opposite" of sprintf is sscanf. It looks at a string, and extracts values from it according to another string with format specifiers. It then places the values it has extracted in its arguments. The arguments must be variables, or other things that you can assign values to. For example, after the following code segment, the variable f will contain -3.6, and the variable i will contain 17:
float f; int i; string the_string = "foo -3.6 fum dum 17"; sscanf(the_string, "foo %f fum dum %d", f, i);
Note that sscanf isn't an ordinary method or built-in function, but a very special construction in Pike. The reason is that sscanf has to change its arguments, and since Pike uses call-by-value, no ordinary method or built-in function can do that.
The format string consists of characters, that should match the contents of the first string exactly. Blanks are significant. For example, the part fum dum in the format string must match a part of the analyzed string (the_string) exactly. The format string can also contain "percent specifiers", which match various things. For example, %d us used to match an integer.
Here is a list of format specifiers:
Specifier | Meaning |
---|---|
%d | An integer in normal decimal (that is, base-10) notation. |
%o | An integer in octal (base-8) notation. |
%x | An integer in hexadecimal (base-16) notation. |
%D | An integer in decimal, or (if it starts with 0) octal, or (if it starts with 0x) hexadecimal notation. Hence, sscanf("12", "%D", i), sscanf("014", "%D", i) and sscanf("0xC", "%D", i) all yield the value 12 in i. |
%f | A floating-point number. |
%c | The character code of a single character. |
%s | A string. If %s is followed by %d, %s will read any non-numerical characters. If followed by %[], %s will read any characters not present in the set in the %[]. If followed by normal text, %s will match all characters up to, but not including, the first occurrence of that text. |
%Ns | As above, but a string of exactly N characters |
%[characters] | A string containing any of the characters in the list characters. A minus sign can be used to give a range of values, so e. g. %[a-d] means a string consisting of any of the characters a, b and c. A ^ sign means "not", so e. g. %[^abc] means any character except a, b and c. They can be combined, so %[a-cf] means a, b, c, and f. |
%{format%} | Repeatedly matches the format specifier format as many times as possible, and gives an array of arrays with the results. Example: %{%d%} matches zero or more integers. |
%% | A single percent (%) character |
If an asterisk (*) is put between the percent and the operator, e. g. %*d, the operator will only match its argument, and not assign any variables.
sscanf returns the number of percent specifiers that were successfully matched.
The matching done by sscanf is rather simple-minded. It looks at the format string up to the next %, and tries to match that with the analyzed string. If successful, it then goes on to the next part of the format string. If a part of the format string does not match, sscanf immediately returns (with the number of percent specifiers that were successfully matched). Variables in the argument list that correspond to percent specifiers that were not successfully matched will not be changed.
Some examples of sscanf:
This call to sscanf will return 1, and the variable a will be given the value "oo":
sscanf("foo", "f%s", a);The return value from sscanf will be 2. a will be given the value 4711. b will be given the value "bar".
sscanf("4711bar", "%d%s", a, b);The return value from sscanf will be 1, a will be given the value "test":
sscanf(" t test", "%*[ t]%s", a)This removes "the " from the beginning of the string in str. If str does not begin with "the ", it will not be changed
sscanf(str, "the %s", str);This assigns "foo" to s1 and "fum" to s2, and the array ({ ({ 1 }), ({ 2 }), ({ 3 }) }) to a. The return value will be 3.
sscanf("foo % 1 2 3 fum", "%s %% %{%d%} %s", s1, a, s2);
A feature with sscanf is that you can define variables inside it:
sscanf("foo % 1 2 3 fum", "%s %% %{%d%} %s", string s1, array(string) a, string s2);
In contrast to variables defined in a for statement, these variables are available in the rest of the block, and not just inside the sscanf.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24790158/viewspace-1042509/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- sscanf()詳解
- Restrictions on Analyzing TablesREST
- C 語言中的 sscanf 詳解
- Python Analyzing your Gmail with MatplotlibPythonAI
- C語言函式sscanf()的用法C語言函式
- Analyzing and Reproducing the EOS Out-of-Bound Write Vulnerability in nodeos
- Add Strings 字串相加字串
- Encode and Decode Strings
- Leetcode Multiply StringsLeetCode
- Chapter 1 Arrays and Strings - 1.7APT
- Linux/AIX strings 命令LinuxAI
- Go Standard library - stringsGo
- golang中的strings.EqualFoldGolang
- Golang 常用的 strings 函式Golang函式
- Leetcode-Multiply StringsLeetCode
- Multiply Strings leetcode javaLeetCodeJava
- CF482C Game with StringsGAM
- 藍橋杯-航班時間(簡單寫法+sscanf的應用)
- Go 語言中 strings 包常用方法Go
- 聊聊Java 9的Compact StringsJava
- LeetCode-Isomorphic StringsLeetCode
- LeetCode-Group Shifted StringsLeetCode
- Golang strings.Builder 原理解析GolangUI
- go 字串之 strings 包介紹Go字串
- strings.xml顯示html格式XMLHTML
- LintCode-Compare Strings
- [ABC343G] Compress Strings
- [ARC058F] Iroha Loves Strings
- [20130117]Analyzing a SQL Trace File with SQL Statements.txtSQL
- 每日一個 Golang Packages 06/05 stringsGolangPackage
- 介紹 DotNet 庫 - Viyi.Strings
- leetcode刷題--Isomorphic StringsLeetCode
- [LeetCode] 205. Isomorphic StringsLeetCode
- LeetCode-Encode and Decode StringsLeetCode
- GO語言————4.7 strings和strconv 包Go
- Leetcode 415. Add StringsLeetCode
- CF 149E Martian Strings(KMP)KMP
- Effective C#-Working with Strings (翻譯) (轉)C#