Pytanie : znajdować słowo w external .txt i dostawać w mój VC++ kod?

Hello
I mieć kod który czytać słowo w external .txt i przechować ono w variable.

Now, i potrzebować ten kod więc i móc the słowo w the jedyny i the pierwszy linia the zewnętrznie kartoteka ten patrzeć jak jedyny:

1:
INDEX (S): [/opt/fox/env/XXXxX.env]


One więcej rzecz. The zawartość ten external segregować zmiana the WSKAŹNIK zawartość i the. The odpoczynek być constant

How móc i robić ono??

Kind uwzględnienie!

This być the kod:
1:
2:
3:
4:
5:
6:
7:
FILE * pFile;
   char env [100];
   pFile = fopen (" C:\ \ myfile.txt", "r");
  
   fgets (env, 100, pFile);
   fclose (pFile);
   jeżeli (strstr (env, "To_Match_This")! = (char*) &env [(0)])

Odpowiedź : znajdować słowo w external .txt i dostawać w mój VC++ kod?

to musieć
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
   pFile = fopen (" C:\ \ myfile.txt", "r");
  
   fgets (env, 100, pFile);
   fclose (pFile);

   // fetch 
   const char * lastSlash = strrchr (env, "//");
   jeżeli (lastSlash! = NIEOBOWIĄZUJĄCY) 
   {
      const char* lastPeriod = strchr (lastSlash, ".");
      jeżeli (lastPeriod! = NIEOBOWIĄZUJĄCY) 
      {
         // Lepiej niektóre inny var, dla ex. overwriting env
         strncpy (env, lastSlash + (1), lastPeriod - lastSlash - 1);
      }
   }
Inne rozwiązania  
 
programming4us programming4us