Tagged Questions
The fscanf tag has no wiki summary.
10
votes
5answers
522 views
What is the modern equivalent (C++) style for the older (C-like) fscanf method?
What is the best option if I want to "upgrade" old C-code to newer C++ when reading a file with a semicolon delimiter:
/* reading in from file C-like: */
fscanf(tFile, "%d", &mypost.nr); ...
5
votes
2answers
141 views
How to scan a file of data and print a value to the screen when a number first exceeds a set number
I'm working in C and I'm very new at it (2 weeks ago). Basically I have a file that has two columns of data separated by a space. I need to read from the file, line by line, and determine when the ...
5
votes
4answers
443 views
how to read a string from a \n delimited file
I'm trying to read a return delimited file. full of phrases.
I'm trying to put each phrase into a string.
The problem is that when I try to read the file with
fscanf(file,"%50s\n",string);
the ...
4
votes
3answers
339 views
How to do conditional parsing with fscanf?
I have some lines I want to parse from a text file. Some lines start with x and continue with several y:z and others are composed completely of several y:zs, where x,y,z are numbers. I tried following ...
3
votes
1answer
37 views
Reading strings from a text file in C and determining end of line
I am trying to read words and numbers from a space and tab delimited text file. I need to identify lines which contain "Step" and "False". I also need to store each word or number separately so that ...
3
votes
2answers
103 views
C writing a random matrix to a file and then reading and copying said matrix from file using formatted I/O
Thanks for all the help I have gotten here before.
In the below program I want to create a random matrix, print it to the screen, write it to a file, then scan a copy of that matrix from the file and ...
3
votes
1answer
73 views
read from .txt C
I'm having some trouble with C language..
I have one file txt with various lines in the form:
F 65 S 4 1 139.56 3704.26
and my program:
p = fopen("dados.txt", "r");
if ( p == NULL) {
...
3
votes
3answers
535 views
C language - Fscanf and sprint commands in unix environment
I am trying to read file with 30 rows and 5 columns with separator of "tab". Each time I get only part of the rows.
In the windows environment it's working good. Any idea why in unix it is not ...
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
Ignoring commas and dots using fscanf()
I'm trying to read strings without commas and dots using fscanf().
Example input:
"Mr. and Mrs. Dursley, of number four, Privet Drive, were proud to say that they were perfectly normal, thank you ...
2
votes
3answers
289 views
fscanf() only picking up first line of file
I have a tab delimited file that I am trying to convert to a tab delimited file. I am using C. I am getting stuck on trying to read the second line of the file. Now I just have an tens of thousand of ...
2
votes
2answers
153 views
Access violation while using fscanf_s
I want to read a file in a specific format, so I use fscanf_s and a while loop. But as soon as fscanf_s is processed, the program crashes with an access violation (0xC0000005).
Here's the code:
FILE ...
2
votes
2answers
212 views
How To Read in Strings that only Contain Alphabet letters with fscanf?
I have been struggling to figure out the fscanf formatting. I just want to read in a file of words delimited by spaces. And I want to discard any strings that contain non-alphabetic characters.
...
2
votes
5answers
418 views
What is the equivalent of Matlab 'fscanf' in Python?
The Matlab function fscanf() seems to be very powerful. Is there any equivalent of the same in python (or numpy)?
Specifically I want to read a matrix from file but I don't want to iterate through ...
2
votes
2answers
368 views
Warnings during compilation of some old C++ software (format expects type int, argument has int32)
I want to compile some C++ software that one can download here. It's from 2001. Running make should do the trick.
I'm on Ubuntu 10.10 and I had to change gcc in the makefile to g++ for compilation ...
2
votes
2answers
871 views
How to use scanf \ fscanf to read a line and parse into variables?
I'm trying to read a text file built with the following format in every line:
char*,char*,int
i.e.:
aaaaa,dfdsd,23
bbbasdaa,ddd,100
i want to use fscanf to read a line from file, and ...
2
votes
4answers
265 views
fscanf in C segmentation error
I am trying to read in values from a file and store them in a structure.
The structure contains
char region
char country[100]
int country_code
The instance of this structure is called c[100]
The ...
2
votes
3answers
541 views
C: fscanf - infinite loop when first character matches
I am attempting to parse a text (CSS) file using fscanf and pull out all statements that match this pattern:
@import "some/file/somewhere.css";
To do this, I have the following loop set up:
FILE ...
2
votes
2answers
494 views
Reading ASCII numbers using “D” instead of “E” for scientific notation using C
I have a list of numbers which looks like this: 1.234D+1 or 1.234D-02. I want to read the file using C. The function atof will merely ignore the D and translate only the mantissa.
The function fscanf ...
2
votes
3answers
574 views
replace the stdin for a file
I got a program with a fscanf like this:
fscanf(stdin, "%d %d,....
I got many fscanf and files that I'd like to test, the files are like this
10485770 15 51200000
-2 10
10 10485760 10485760
10 ...
1
vote
3answers
59 views
fscanf() not working with input
My Function That writes to the file:
Record_t * load_Record(FILE * infile)
{
Record_t *r;
char title[TITLE_SIZE];
char [MEDIUM_SIZE];
int ID, rating;
if ((fscanf(infile,"%d: %s ...
1
vote
1answer
37 views
How can i make fscanf more 'stringent' or a totally different way to solve my extra line?
I have a little piece of code which reads a file and i want to find the exact match for a line but fscanf is also reading a similar line. How can i make it more stringent, ie case sensitive or reading ...
1
vote
1answer
38 views
Getting rid of strings in data file
I have written a code that reads a square matrix from a .dat file and a vector from a separate .dat file and augments the two and does gauss jordan elimination to get the augmented matrix into ...
1
vote
3answers
60 views
fscanf reads a line that does not exists in a file
I'm on a Fedora 15 computer and I have a simple code that looks like this
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x[50], y[50];
int i;
FILE *f_in = ...
1
vote
2answers
95 views
Fscanf in C for storing data from file
Here's my code.
#include<stdio.h>
struct element {
int value;
char activity;
};
typedef struct element element;
int main(int argc,char** argv) {
FILE* fp;
fp = fopen(argv[1], ...
1
vote
1answer
71 views
Why fscanf not working as expected for subsequent calls?
char s[20];
fscanf(stream, "%s", s);
I found that it can only work for the first time, subsequent calls will fail.
(gdb) p fscanf(stream, "%s", s)
$15 = 1
(gdb) p (char *)s
$17 = 0x7fffffffe770 ""
...
1
vote
1answer
102 views
read in doubles from a text file (using C / Visual Studio)
I'm probably a retard, but anyway... Something really simple. I have a text file with numbers. 2 numbers on each row, separated by a space. Each pair of numbers represents an (x, y) co-ordinate. I am ...
1
vote
3answers
149 views
Detecting a 0x0a with fscanf with C
I am reading a file like:
31 0A 34 0A 31 0A 38 0A 34 0A 33 0A 36
0A 31 0A 31 0A 39 0A 31 30 0A 31 30 0A
35 0A 35 0A 31 30 0A 31 0A 33 0A 36 0A
33 0A 31 30 0A 35 0A 31 0A 31 30 0A 39
0A 35 ...
1
vote
1answer
61 views
Code that isn't scanning everything correctly
I'm supposed get get a file and scan in information. When I try printing it out, most of information I scanned becomes missing or chopped off. here's my code:
#include<stdio.h>
...
1
vote
2answers
67 views
Scanning from files
I am currently trying to scan a single line in from a file but having a snag at strings.
This is the example line my professor told me to work on.
enum status{MEM,PREP,TRAV}
union type { double int ...
1
vote
3answers
267 views
c fscanf error checking
I am using fscanf to read from a file in C. I was just wondering if I am correctly checking all the error conditions, and this is the most robust way to do so and I'm not missing anything.
FILE* fp;
...
1
vote
1answer
296 views
calling fscanf in assembly using nasm
I am trying to read 3 values from a file with a format as integer character whitespace integer. For example:
5, 3
In that exact format i.e: no whitespace after the 5, a whitespace after the comma ...
1
vote
3answers
464 views
C reading in multiple lines from file
The problem I have is reading in multiple lines of integers from a file using standard input. The files looks like:
123
423
235
523
..etc
The code I have at the moment is:
/*
* Read in the ...
1
vote
1answer
114 views
c fscanf for ints causes segfault
DISCLOSURE: This is homework.
The code below is meant to read a command file formatted like:
ADD 6 6 5
ADDTERM 0 1 1
MULTIPLY 2 40
and call the appropriate command using the given parameters. ...
1
vote
2answers
172 views
scanf formatting issue
I have a log file with the following format:
INFO 2011-03-09 10:26:15,270 [user] message
I want to parse the log file using PHP:
// assume file exists and all that
$handle = fopen("log_file.txt", ...
1
vote
3answers
106 views
fscanf input with floats
I'm reading from a text file which contains:
Mary 55334422 24.90 56.6 45.68
and am reading it in:
....char name[20]; int num; double worked; double rate; double total;....
fscanf(fp, "%s %d %f %f ...
1
vote
1answer
127 views
why does fprintf doesn't work after fscanf?
I want to open a file for both writing and reading, but after I read from it I can't write:
f_prefs = fopen(prefs_path, "r+");
while (fscanf(f_prefs, "%[^\n]\n", line) == 1)
{
... do some stuff ...
1
vote
3answers
467 views
How can I get how many bytes sscanf_s read in its last operation?
I wrote up a quick memory reader class that emulates the same functions as fread and fscanf.
Basically, I used memcpy and increased an internal pointer to read the data like fread, but I have a ...
1
vote
5answers
302 views
Width as a variable when using fscanf [C++]
I am trying to read in a certain portion of a file and that amount of data is different per line but I know how how many bytes of info I want. Like this:
5bytes.byte1byte2byte3byte4byte5CKSum ...
1
vote
6answers
279 views
Is there a more efficient way of reading a formatted file in C than I have done?
I need to read in a formatted file that looks something like this.
Code: HARK
Name: Oscar
MRTE: Train
etc
At the moment my code looks like this.
FILE *file;
char unneeded[10];
char ...
1
vote
7answers
477 views
retrieving a string with spaces from a file in C
We were given an assignment that involved taking information from a file and storing the data in an array. The data in the file is sorted as follows
New York 40 43 N 74 01 W
the ...
1
vote
2answers
945 views
Read In Hex Values (C)
I am currently attempting to read in Hex values from a text file.
There can be multiple lines of Hex's and each line can be as long as needed:
f53d6d0568c7c7ce
1307a7a1c84058
...
1
vote
2answers
435 views
Question regarding pointers in fscanf
I am using C. I am having issues with using pointers for the fscanf function. When I try to do:
int *x;
/* ... */
fscanf(file, "%d", x[i]);
My compiler gives me a warning saying "format argument is ...
1
vote
3answers
6k views
How to know new line character in fscanf?
How to know that fscanf reached a new line \n in a file.
I have been using my own functions for doing that. I know I can use fgets and then sscanf for my required pattern. But my requirements are not ...
1
vote
7answers
1k views
fscanf reading problem
sorry, perhaps this is a stupid question.
I have a file like this:
36 146 10 53 240 133 104 28 51 81 124 ...
so I want to read the numbers from a program, so I do:
.... some function ...
0
votes
4answers
39 views
Difference between fgets and fscanf?
I have a question concerning fgets and fscanf in C. What exactly is the difference between these two? For example:
char str[10];
while(fgets(str,10,ptr))
{
counter++;
...
and the second example:
...
0
votes
2answers
50 views
fscanf not able to read the values
I am trying to read a text file using fscanf.I am working in eclipse in OpenCV on ubuntu.
Here are some sample values in the text file
0 5 7 0.547619047619048 1 0.0274509803921569 1
0 6 ...
0
votes
2answers
38 views
Debug assertion failed . while using fscanf
Hey I've tried a lot of programs in Visual Studio and in most of them when i try taking the input from a stream ( while using fscanf ) it invariably throws a debug assertion failed error ..
and goes ...
0
votes
1answer
35 views
How to store lines from a file into a dynamic array and print?
I need, in ANSI C, to open a file, to read all of its lines into a dynamically allocated array of strings, and to print the first four lines. The file may be any size up to 2^31-1 bytes, while each ...