A function used in many languages to parse data from a string that matches a given pattern.
4
votes
1answer
52 views
scanf format specifier to read zero or more characters from a set of characters
I need to be very strict in regard to the characters that can be in a read string.
I have a series of whitespace followed by a character followed by a series of whitespace.
Examples: " c ", "c" , "", ...
2
votes
1answer
43 views
sscanf usage - how to verify a completed scan vs an aborted scan
My database provides a textfile with opening and closing " to delimiter formulas.
The set of formulas is very limited and will be easy to implement once identified.
I try to use scanf to get the ...
1
vote
1answer
53 views
scanf format to ignore irrelevant characters
I wrote a short example code to illustrate my problem
#include <stdio.h>
#include <string.h>
unsigned parseAndCompareDouble(const char* inSTR, const char* inF, const char * expect, const ...
0
votes
5answers
54 views
Correct sscanf() prototype, “int sscanf ( const char * s,const char * format, …);” or int sscanf (char * s,const char * format, …);? [closed]
Here is the prototype for the sscanf() function as described in the cplusplusreference(link) :
int sscanf ( const char * s, const char * format, ...);
But I find something fishy about it.Not only ...
0
votes
3answers
103 views
in C, what is “%n” ? and how does this code work? [duplicate]
In c programming language, what's the placeholder "%n" ??
and how the following code works ?
char s[150];
gets(s);
int read, cur = 0,x;
while(sscanf(s+cur, "%d%n", &x, &read) ...
0
votes
1answer
41 views
How to read strings from file with sscanf or fscanf?
So, of course, I'm having a little trouble right now. I'm trying to read a text file that goes something like this in a columnar order. What I would like to do is store the number, character and ...
1
vote
1answer
26 views
sscanf function changes the content of another string
I am having problems reading strings with sscanf. I have dumbed down the code to focus on the problem. Below is a function in the whole code that is supposed to open a file and read something. But ...
2
votes
2answers
47 views
fscanf() / sscanf() - Match variable length Whitespace?
I would to use sscanf() or (preferably) fscanf() to scan /proc/meminfo and return MemTotal:
MemTotal: 1027156 kB
MemFree: 774596 kB
Buffers: 23816 kB
Cached: ...
-1
votes
1answer
56 views
Why is fprintf()/fscanf()/printf() showing wrong output in my Dec-to-Binary program,while printf() & sscanf() work fine?
I initially wrote this program to simply display the binary-form of a decimal integer,but I found it crude since it simply used prinf() to print the bits side by side.So I used sprintf() to write it ...
1
vote
3answers
39 views
fgets and sscanf getting list value twice
I'm having trouble with sscanf and fgets where it seems to be getting the last value input and re reading it back through even though we have come to the end of the file. My code:
while (won == 0) {
...
0
votes
2answers
36 views
input from fgets not stored using sscanf properly
So I have this small part of my code (basically the input for my whole program).
It has to take the form of a string with at most 20 characters, and two integers all separated by a space.
eg master ...
1
vote
3answers
37 views
Using C sscanf to parse number from a directory path
I have the following string
/foo123/bar123/card45/foofoo/1.3/
And I want to parse the number that follows the word "card", which in the example above would be 45. Should I use sscanf for this and ...
-1
votes
3answers
67 views
Reading in from file to structures
I am attempting to read saved data from a file. I am trying to convert the information in the buffer from a string to characters and assign their values to the members of the structure.
It seems the ...
1
vote
1answer
50 views
fgets and sscanf with a struct causing unexpected results
I have a program I am writing in which I need to fgets a line from a flat file. I then sscanf the line to put the data into a struct. This gives me very unexpected results. First this is a working ...
2
votes
1answer
44 views
sscanf returns 1 when searching for float in a string starting with the character n or i
In the following code I would expect sscanf to return 0, but it returns 1 and assigns 0.000000 to the float variable x. The same behavior occurs when the string begins with the letter i, but with no ...
-3
votes
2answers
55 views
Parse human-readable sizes (k, M, G, T) into bytes in C
I'm looking for a quick way to parse human-readable byte sizes (examples: 100, 1k, 2M, 4G) into a byte values. The input is a char * and the output must be a size_t (e.g. unsigned, likely 64-bit or ...
0
votes
1answer
46 views
Scan String with Ruby Regular Expression
I am attempting to scan the following string with the following regular expression:
text = %q{akdce ALASKA DISTRICT COURT CM/ECFalmdce
ALABAMA MIDDLE DISTRICT COURTalndce
}
p ...
1
vote
1answer
30 views
sscanf not working properly in mips platform
The following code works correctly for x86 but not in mips platform.
char *str = "11111111-22222222 r-xp 00000000 00:0e 1843624 /lib/libdl.so.0";
unsigned long long start_addr, stop_addr, ...
0
votes
3answers
72 views
sscanf until it reaches a comma
I'm trying to scanf words and numbers from a string looks like: "hello, world, I, 287876, 6.0" <-- this string is stored in a char array (string)
What I need to do is to split things up and ...
0
votes
1answer
68 views
sscanf pointer vs variable address
The following code works.
unsigned int i1;unsigned int i2;
float *v1;float *v2;
sscanf("1 1 2.0 3.0","%u %u %f",&i1,&i2,v1,v2);
printf("%f",v1);
Add in another %f, the following does not ...
-2
votes
3answers
106 views
how do i use sscanf() method in C
i use sscanf in this code
while(totalByte < sizeof(rdata))
{
read(client_sockfd, &buffer[totalByte],1);
printf("bytes[%d] : %x \n", totalByte, buffer[++totalByte]);
}
use this ...
0
votes
1answer
99 views
Splitting a string in ansi C
I'm trying to find a way to split a single string into two separate variables. Right now I have:
char buffer[1024];
char firstName[16];
char lastName[16];
fgets(buffer, 1024, stdin);
sscanf(buffer, ...
1
vote
1answer
37 views
Variance in data in/out of loop
I'm trying to write a program that reads in a .pdb file, which is a file type used in biology applications. This type of file has a standard format with varying white space between data. The file is ...
0
votes
1answer
57 views
Expects char* but is char(*) [20]
I'm trying to write a script to except data from GET request using sscanf. I seem to be having a problem with parsing it with sscanf and passing it on to a variable. I think that the issue is ...
0
votes
1answer
70 views
what is the sscanf format for string “abc 123 456”
I want to split the string "abc 123 456" into the string ("abc") and 2 numbers (123,456). What is the format should I put in the below code?
char *s;
int a,b;
sscanf("acb 123 456", format, s, &a, ...
2
votes
3answers
70 views
How to scan an unknow number of elements from a string?
I'm trying to scanf multiple ints from a string, but I don't know how many it will have, because it varies from case to case.
I want to scanf multiple numbers and put them in an array.
I've been ...
0
votes
0answers
28 views
How to separate words by numbers from a string in C
I have a text file called commands.txt which contains some commands followed by some arguments.
Example:
STOP 1 2 4
START 5 2 1 8
MOVE
CUT 0 9
I want to read every line from this text file and to ...
0
votes
1answer
68 views
Parsing doubles from char into a 2D array with sscanf
Typical for a C beginner, I have some problems understanding arrays, pointers and pointers of arrays. Unfortunately, the info provided here did not help me much, since all deal with "easier" problems. ...
0
votes
1answer
62 views
Why is sscanf acting this way?
I thought that I understood C but i am having a hard time just writing a simple addition code for practice. When I run this code, int a is 0 every time. However, int b works fine. The idea here is ...
0
votes
0answers
92 views
Is there a way to use sprintf() in c to store strings with whitespace?
I am trying to read a line from input until a newline character is encountered and store in it in a buffer with a string followed by a digit and another string. Any help will be greatly appreciated! ...
1
vote
3answers
247 views
How do I read using sscanf a character string with spaces and then a number?
I want to read from the keyboard data to be inserted in a list.
For example if I type ins "name_to_insert" 19930412, the character string name should be name_to_insert, without the quotation marks ...
0
votes
4answers
72 views
Strange behaviour of sscanf with string
I've got a trouble with sscanf. To check it I made a simple file, so when I compile this:
#include <stdio.h>
main(){
char *a;
/* */
char *s = "GET /something HTTP/1.1\r\n";
...
0
votes
1answer
221 views
Read a file line by line with fgets an parse with sscanf in C?
I have this Homework assignment where I have to read lines one by one from a file and then parse it.
The text file looks like this: The number of lines varies from file to file.
NGM8 Nguyen, ...
2
votes
1answer
76 views
Is sscanf destructive?
The first call to printf below prints out my line.
The second call to printf prints out whitespace.
What's going on?
while (getline(&line, &size, config_file) != -1) {
...
1
vote
1answer
70 views
Using '-' character in sscanf with gcc
I have the following code snippet:
char s[] = "2012-06-01-02";
int nYear;
int nMonth;
int nDay;
int nPass
sscanf(s, "%d-%d%-%d-%d", &nYear, &nMonth, &nDay, &nPass);
This code works ...
3
votes
1answer
54 views
Sscanf and custom breaks
I have a string containg spaces and tags like:
<note label="description">sp|P02671|FIBA_HUMAN Fibrinogen alpha chain OS=Homo sapiens GN=FGA PE=1 SV=2</note>
I want to capture only the ...
2
votes
3answers
126 views
sscanf c++ splitting string to ints sometimes doesn't work
I am writing a program that converts a date string to three separate int variables: year, month, day.
int m,d,y;
sscanf("2011-03-08","%i %*[-] %i %*[-] %i",&y,&m,&d);
cout << ...
0
votes
0answers
22 views
Pawn - sscanf splitting string
I want to split one string into two ones.
new string2[128]; new string1[128]; new text[256];
format(text,sizeof(text),"You're number one,Your're number two,You're number three"); ...
1
vote
1answer
83 views
Can I call sscanf mutliple times on the same string?
I'm trying to read a line from a file, I grab a line line using fgets. I then try to use sscanf to parse it. Sometimes I'll call sscanf and find out it returns the wrong number of arguments. So then ...
0
votes
0answers
33 views
Reading data with sscanf(): char issue %*s
I have a problem in my source in C with sscanf() function and char variable.
This is a part of my source in C:
while (ret != EOF){
ret = fscanf(plik,"%[^\n]\n", text);
sscanf(text,"%d %d ...
0
votes
4answers
79 views
sscanf with hexadecimal negative value
I need to convert hexadecimal 4-digits values to decimal so I used ssscanf but it is not work on negative numbers...
For example,
int test;
sscanf("0xfff6","%x",&test);
return 65526 ...
0
votes
3answers
280 views
how to use fgets and sscanf for integers in loop
Beginner with C here. I am trying to run a loop where strings and ints are entered into various fields of a struct. When prompted for a 'last name', the user can press enter with no other input and ...
0
votes
2answers
41 views
Scan special string using sscanf
I want for example to scan this $lang['foo1']='foo2'; from a PHP file so I tried
this but it doesn't work.
$file = "../lang/lang.en.php";
if(file_exists($file)) {
$text = fopen($file, 'r+');
...
2
votes
4answers
110 views
How does sscanf() see numbers in a string?
I have a problem with sscanf() in the following code:
void num_check(const char*ps){
char *ps1=NULL;
int number=0;
unsigned sum_num=0;
ps1=ps;
for(;*ps1!='\0';ps1++){
if (isdigit(*ps1)){
...
1
vote
1answer
103 views
sscanf won't scan hexadecimal formatted float with “%a” under mingw
I am using gcc 4.6.1 with mingw in windows.
I recently learned about the %a format modifier for representing floats exactly in floatingpoint hex notation (in C99, apparently).
For some reason I can ...
0
votes
1answer
111 views
Splitting a white-spaced string using sscanf()
I'm trying to split a long string with white-spaces, using sscanf().
For example: I need to split this
We're a happy family
into
We're
a
happy
family
I tried the following approach
char ...
0
votes
1answer
134 views
C - ignoring whitespace with sscanf
I've been trying to figure this out, and I sort of have a work around but I just wanted to check that I'm not missing something obvious. Basically, I have a series of commands that follow certain ...
0
votes
0answers
78 views
Printing multiple strings with printf in C [duplicate]
Possible Duplicate:
how to print a value after a specific string
So for my original assignment I had to print a single character after the string "myprop=" but not I was told I need to ...
1
vote
1answer
69 views
sscanf with pipes C
I have a problem parsing in c with sscanf
I read a text on console with one function called read_line()
char cm1[100],cm2[100],cm3[100]
printf("Enter command:");
read_line(var_text);
/*var_text = ...
0
votes
2answers
172 views
C sscanf and string format
I have a little bit of a problem while understanding the sscanf string formatting.
I have that string stored in str : 192.168.0.100/act?bla=
I want with this code to have bla stored inside my "key" ...




