000
10.01.2007, 08:03 Uhr
~Chris236
Gast
|
Hi,
folgendes:
Ich hab eine Textdatei in der steht:
blablabla {Feld 01} bla {blla]}
wie sieht jetzt der Quellcode aus, wenn ich will, dass nur der Ausdruck "{Feld 01}" in eine andere Textdatei kopiert wird?
Das is meine Vorgabe:
#include <stdio.h>
#include <io.h>
#include "L01.h"
//------------------------------------------------------------------------------ int L01_RedFil(char* FilNam) { FILE *d1 = fopen(FilNam,"r"); FILE *d2 = fopen("output.txt","w");
int c;
while((c=fgetc(d1))!=EOF) { if(c != '{') continue;
//------------------------------------------------------------------------------
Danke schonmal im voraus.
Gruß Chris |