// reading a text file
#include <iostream>
#include <fstream>
#include <string>
#include <dirent.h>
using namespace std;
int main () {
string line;
DIR *dir;
struct dirent *ent;
if ((dir = opendir ("U:\\C\\DIR\\TXT")) != NULL) {
while ((ent = readdir (dir)) != NULL) {
printf ("%s\n", ent->d_name);
ifstream ifs( ent->d_name );
ifs.open (ent->d_name, std::ifstream::in);
if (ifs.is_open())
{
while ( ifs.good() )
{
getline (ifs, line);
cout << line << endl;
}
ifs.close();
}
else cout << "Unable to open file\n";
} // end while
closedir (dir);
} else {
perror ("File open failed");
return 0;
}
return 0;
}
Můžete mi říct proč se mi nedaří otevřít soubor? Se souborem chci provést nahrazování po řádcích.
Soubory typu txt, kódování WINDOWS-1250, obsahují české znaky
Např.
A) pokud řádek obsahuje string (hledání pomocí regulárního výrazu), pak ho pak přidej <stroke>...text řádku..</stroke>
nebo
B) odstraň řádek
nebo
C) nahraď určité slova za jiné slova. Např. Motor\w*, Auto\w* nahraď za stroj. Nebo Motorka nahraď za Motocykl apod.