Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file within text and numbers.

I must make a function that finds all numbers from the text file.

I opened a file now what?

FILE *fp;
if((fp=fopen("Text.txt","r"))==NULL) {
    printf("No such file...\n");
}
share|improve this question
3  
Homework? What do you have so far? – flipchart Nov 17 '11 at 9:50
2  
try a bit of code from here first cprogramming.com/tutorial/cfileio.html and then post what you get. People will help you if you try. – Preet Sangha Nov 17 '11 at 9:52
I opened a file what now ? – Omar Ali Nov 17 '11 at 10:13
3  
@Omar that is not trying seriously. How about formulating a pseudo code approach first. So, just in natural language, how would you proceed from hereon? – Yuri Nov 17 '11 at 10:23
Okey just tell me how can i use function like getchar in a file ? – Omar Ali Nov 17 '11 at 10:33
show 1 more comment

2 Answers

I'm sure it is a homework, but you didn't tag it like one (so I did tag it)

Define what is lexically a number for you (it is too imprecise).

Then make a loop, reading line by line with e.g. getline or character by character.

Read more about lexing and automata based programming

But I don't want to do all your homework. It is better for you to try understanding by yourself.

share|improve this answer
I like this answer. – tekknolagi Nov 17 '11 at 9:56

Open the first file for reading. Open another file for writing. Iterate over characters, determining whether each "word" is a number or not using atof, and if it is a number, write to the open file.

Same could be done with just outputting, but that's not as interesting.

EDIT: Basile Starynkevitch mentions that strtod is better than atof for this job, as it gives the ending character. Both work.

share|improve this answer
strtod is better, it gives you the ending character. – Basile Starynkevitch Nov 17 '11 at 9:53
aight, guess that works – tekknolagi Nov 17 '11 at 9:53
1  
I do not think that this works. From the manpage: On success, the function returns the converted floating point number as a double value. If no valid conversion could be performed, or if the correct value would cause underflow, a zero value (0.0) is returned. (source: cplusplus.com/reference/clibrary/cstdlib/atof) How would you differentiate between the word "0" and "monkey"? (pff 10 edits later:) After this check passed, you need to check if all characters c fulfill: '0' <= c <= '9' – Yuri Nov 17 '11 at 10:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.