Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » C / C++ (WinAPI, Konsole) » Wort suchen

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
11.03.2007, 00:50 Uhr
~Test
Gast


Wie kann ich in einer txt Datei das Wort Connect suchen?
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
11.03.2007, 03:46 Uhr
CppProgrammer




C++:
#include <string>
#include <fstream>

int main(int argc, char* argv[])
{
    std::string str;
    std::ifstream stream("text.txt");
    for(int line=1, column; std::getline(stream, str); ++line){
        if((column = (int)str.find("Connect"))++ != -1){
            printf("Found \"Connect\": Line %d, column %d\n", line, column);
            break;
        }
    }
    stream.close();
    
    return 0;
}


Dieser Post wurde am 11.03.2007 um 03:53 Uhr von CppProgrammer editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
11.03.2007, 13:17 Uhr
~Test
Gast


Em ich benutze C
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
003
11.03.2007, 13:31 Uhr
FloSoft
Medialer Over-Flow
(Administrator)


dann musste das ganze in fopen, fgets und strchr umsetzen.
--
class God : public ChuckNorris { };
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ C / C++ (WinAPI, Konsole) ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: