Tagged Questions

A function used in many languages to parse data from a string that matches a given pattern.

learn more… | top users | synonyms

7
votes
7answers
7k views

sscanf in Python

I'm looking for an equivalent to sscanf() in Python. I want to parse /proc/net/* files, in C I could do something like this: int matches = sscanf( buffer, "%*d: %64[0-9A-Fa-f]:%X ...
6
votes
1answer
418 views

how to use sscanf in loops?

Is there a good way to loop over a string with sscanf? Let's say I have a string that looks like this: char line[] = "100 185 400 11 1000"; and I'd like to print the sum. What I'd really like to ...
6
votes
6answers
3k views

What should I use instead of sscanf?

I have a problem that sscanf solves (extracting things from a string). I don't like sscanf though since it's not type-safe and is old and horrible. I want to be clever and use some more modern parts ...
6
votes
3answers
742 views

Is there an inverse function of *SysUtils.Format* in Delphi

Has anyone written an 'UnFormat' routine for Delphi? What I'm imagining is the inverse of SysUtils.Format and looks something like this UnFormat('a number %n and another %n',[float1, float2]); ...
5
votes
3answers
326 views

Parsing: library functions, FSM, explode() or lex/yacc?

When I have to parse text (e.g. config files or other rather simple/descriptive languages), there are several solutions that come to my mind: using library functions, e.g. strtok(), sscanf() a ...
5
votes
3answers
597 views

sscanf wrapping function to advance string pointer in C

I have a function that makes a series of calls to sscanf() and then, after each, updates the string pointer to point to the first character not consumed by sscanf() like so: if(sscanf(str, "%d%n", ...
4
votes
3answers
97 views

C - sscanf not working

I'm trying to extract a string and an integer out of a string using sscanf: #include<stdio.h> int main() { char Command[20] = "command:3"; char Keyword[20]; int Context; ...
4
votes
5answers
532 views

Format specifiers for uint8_t, uint16_t, …?

If I have an integer variable I can use sscanf as shown below by using the format specifier %d. sscanf (line, "Value of integer: %d\n", &my_integer); Where can I find format specifiers for ...
4
votes
6answers
187 views

Why does sscanf not work properly with a bool type

The output of this code: const char *buff = "*_2D 1"; char field[10]; int flag; sscanf(buff, "%s %d", field, &flag); printf("field:%s flag:%i\n", field, flag); is field:*_2D flag:1 However by ...
4
votes
4answers
396 views

Is sscanf considered safe to use?

I have vague memories of suggestions that sscanf was bad. I know it won't overflow buffers if I use the field width specifier, so is my memory just playing tricks with me?
4
votes
3answers
5k views

reading a string with spaces with sscanf

For a project I'm trying to read an int and a string from a string. The only problem is sscanf appears to break reading an %s when it sees a space. Is there anyway to get around this limitation? ...
4
votes
3answers
3k views

How to portably convert a string into an uncommon integer type?

Some background: If I wanted to use for, for instance, scanf() to convert a string into a standard integer type, like uint16_t, I’d use SCNu16 from <inttypes.h>, like this: #include ...
3
votes
6answers
67 views

sscanf - varying number of format arguments?

In my program, I use sscanf to check whether a string is of a given format. To do so, I provide the number of arguments in the format string and check whether sscanf returns that same number when ...
3
votes
4answers
137 views

what is the Java equivalent of sscanf for parsing values from a string using a known pattern?

So I come from a C background (originally originally, though I haven't used that language for almost 5 years) and I'm trying to parse some values from a string in Java. In C I would use sscanf. In ...
3
votes
4answers
150 views

sscanf format c++

I have a sscanf statement as sscanf (fieldname, "%s_%d", name, id); I am giving input as frog_461 but it displays name as "frog_461" and 0 for id. Can you please suggest the correct way to give ...
3
votes
2answers
67 views

sscanf and octals

Why wouldn't it just work? const char* ip = "192.168.1.4"; unsigned int ip4[4]; sscanf(ip,"%o.%o.%o.%o",ip4,ip4+1,ip4+2,ip4+3); // doesn't work sscanf(ip,"%d.%d.%d.%d",ip4,ip4+1,ip4+2,ip4+3); // ...
3
votes
1answer
390 views

sscanf skip over white-space in beginning

I want to read in a string and parse it with sscanf. Although i don't want to read in any spaces in the beginning. Sample string. @a Bear Tiger sscanf(strLine, "@%1s %64s %64s", dir, name1, name2); ...
3
votes
3answers
3k views

convert string to integer sscanf or atoi

gcc 4.4.4 c89 What is better to convert a string to an integer value. I have tried 2 different methods atoi and sscanf. Both work as expected. char digits[3] = "34"; int device_num = 0; ...
3
votes
3answers
439 views

Convert function to read from string instead of file in C

I've been tasked with updating a function which currently reads in a configuration file from disk and populates a structure: static int LoadFromFile(FILE *Stream, ConfigStructure *cs) { int ...
3
votes
3answers
1k views

how to parse URLs in c using sscanf()?

this is my c code that reads a list of URLs from a file , and tries to separate the various parts of the URL.. This is just rough parsing , i'm not bothered about special cases.. I guess there is ...
2
votes
1answer
32 views

Punctuation causing errors when reading a string with whitespace using sscanf in C

Update: Properly initialising string with char string[sizeof buffer - 1] has solved the crashing problem, but I'm still curious as to what having more than one punctuation mark had to do with it! I ...
2
votes
2answers
57 views

Using sscanf to parse a string

Using gcc (GCC) 4.6.2 in C89 mode. I am wondering if my sscanf has been implemented correctly? I am trying to just get just the port number from this SDP string which is contained in element, the ...
2
votes
3answers
119 views

C++ cin vs. C sscanf

So i wrote this in C, so sscanf scans in s but then discards it, then scans in d and stores it. So if the input is "Hello 007", Hello is scanned but discarded and 007 is stored in d. static void ...
2
votes
3answers
47 views

Proccessing data from line in C

I have data format below int : int \t string for example, 11:11 long long long description. I use sscanf(line, "%d:%d\t%s\n", &num1, &num2, &description) but it only cuts the ...
2
votes
3answers
39 views

How can i separate a string in 3 shorts and the rest in one string(this string as white spaces in it) C

The title cuts it. How can i separate a string that has white spaces between the 3 shorts and between the rest of the string to 4 different strings. Example: "123 402 10 aaa bbb cc". What i want ...
2
votes
2answers
152 views

sscanf: get first and last token in a string

Is it possible by using sscanf to get the first token then skip some tokens and then get the last one? For example, the output of /bin/ps -fu1000 cm 2249 1548 0 0:00.00 ttys001 0:00.01 ...
2
votes
2answers
106 views

How do I use sscanf to get names and print them out the way i want them to

I'm making a program that takes names from the user seperated by commas. The program allows the user to put as many or as little spaces as they want between the commas. So for example: If I were to ...
2
votes
3answers
84 views

Find where sscanf finished reading the string

Using sscanf in a simple little project, and it's a neat little tool. However, I can't see any obvious way to find where in the input string sscanf decided it'd found all of its data and stopped ...
2
votes
5answers
213 views

Escaping square bracket ] in sscanf

I want to scan lines like "[25, 28] => 34" I wrote a small program to test it out: #include <cstdlib> #include <iostream> int main() { char* line = "[25, 28] => 34"; ...
2
votes
3answers
92 views

sscanf reads string in ( )

this question bothers me this few days. I want to read a string for example, input = (-0.001999,-0.919191,-0.777777,999999.999999) using sscanf. And my code is char x[10], y[10], z[10], angle[10]; ...
2
votes
5answers
492 views

C++, how to tokenize this string?

How can I get string like "Ac milan" and "Real Madryt" if they are separated with whitespace? Here is my attempt: string linia = "Ac milan ; Real Madryt ; 0 ; 2"; str = new char [linia.size()+1]; ...
2
votes
1answer
143 views

C sscanf exact length

I'm having a problem using the exact string length, %Ns, format modifier in sscanf. When buff contains O 5 hello R 700 the code works fine. but when I try to have a space in the name field it doesn't ...
2
votes
1answer
342 views

How do I convert this use of sscanf to cin?

I need to convert this line to use cin. sscanf(s, "%*s%d", &d); What's the difference between sscanf and scanf and cin?
2
votes
3answers
331 views

sscanf - get nth word in a sentence

I'm new to C, and I'm trying to scan a line from stdin and extract the nth word from it. Right now I've hard-coded it where you can store the first, second, or third entry in the sentence, and this is ...
2
votes
1answer
165 views

What argument type does sscanf expect for a character class?

I've been trying to get sscanf to recognize a fairly simple format using character classes. I've noticed that when I provide sscanf with a char* to match the character class it overwrites the previous ...
2
votes
4answers
151 views

Extract an undetermined number of integers from a string

I was wondering whether there's a better way of doing this; say we read stdin to a string using fgets() where the string includes a total of n integers (e.g. 5 16 2 34 for n = 4), what would be the ...
2
votes
2answers
1k views

gcc/ld - create a new libc.so with __isoc99_sscanf@@GLIBC_2.7 symbol from glibc.2.6

I have an application, which does a error when I try to run it: /lib/libc.so.6: version `GLIBC_2.7' not found But the only symbol it needs from glibc 2.7 is __isoc99_sscanf@@GLIBC_2.7 I want to ...
2
votes
3answers
351 views

sscanf with multiple spaces?

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 ...
2
votes
3answers
411 views

Escape the dot in PHP sscanf?

This doesn't work: list($value) = sscanf('foo.bar','%s.bar'); echo $value; //foo.bar While this does: list($value) = sscanf('foo bar','%s bar'); echo $value; //foo Any suggestions are really ...
1
vote
2answers
63 views

sscanf() causes link to fail when powl() is present

When I compile the pared-down program below, I get the following error from the linker: $ gcc -std=c99 -O3 powltest.c -o powltest /tmp/ccYkWTGI.o: In function `main': powltest.c:(.text+0x7a): ...
1
vote
2answers
53 views

sscanf for this type of string

I'm not quite sure even after reading the documentation how to do this with sscanf. Here is what I want to do: given a string of text: Read up to the first 64 chars or until space is reached Then ...
1
vote
2answers
65 views

sscanf string splitting not working

Can someone please explaing why the string is not splitted in the following code #include <stdio.h> int main(void) { char name[] = "first:last"; char first[20], last[20]; ...
1
vote
3answers
108 views

Passing a triple pointer to allocate memory in another function, sscanf exception

Im allocating memory to a double pointer in another function, therefore I need to use a pointer to the pointer to the pointer. Im getting an exception thrown when i use sscanf, im not sure exactly ...
1
vote
2answers
69 views

Using a pointer to a pointer to a float [3] with sscanf, getting an exception

EDIT: Okay since i was too vague earlier heres an SSCCE: typedef float vector[3] int mainLoaderFunc() { char* memory = NULL; size_t size = loadFile(fileName, &memory); // load model ...
1
vote
2answers
82 views

Keep Leading zeros C

I am trying to read the memory addresses from /proc//maps and I use the following code for (ptr = NULL; getline(&ptr, &n, file) > 0;) { if (ptr[0]== ' ') { continue; } ...
1
vote
1answer
41 views

Escaping a %s within a sprintf to construct a variable field width for sscanf

I would want to know how is it possible to escape "%*s" in a sprintf call. For example I have the following piece of code: sprintf(log_buffer,"1234 567 89"); strcpy(format,"%*s"); ...
1
vote
2answers
51 views

How to get first argument of a program call

I'm making a program in C and this is my code: int main(int argc, char **argv) { int n; char aux[10]; sscanf(argv[1], "%[^-]", aux); n = atoi(aux); } So, if I run the program from ...
1
vote
3answers
65 views

specifying variable field width in sscanf

I have the following sscanf statement: sscanf(line, "%*s %511s %511s",protocol,hexdata) Now line consists of the following form " a b c ". It's clear I am ignoring the value a by giving %*s. I take ...
1
vote
2answers
67 views

scanf(“…%n”,…) on failing match

I want to count the "columns" in a CSV files, given its elements' string pattern e.g. 1,2,3,4 with pattern "%d," should return 4. I wrote a tokenizer like this offset = 0; strcpy(var_pattern, ...
1
vote
2answers
75 views

C - Read in file according to a format

I am trying to read a file in a specific file format in c. the file contains some data items. every data item is seprated by a flag. the file should look look like this: file-header: "FIL0" file-id: ...

1 2 3