473,503 Members | 1,683 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

reading a textfile

Hello,
many thanks for the solution of my last problem but I think I will use
my own simple solution. I want to find anagrams. The file "d.txt"
looks like this:
opts stop
fnu fun
opts post
opts tops
emos some
So I compare every word order but in my programm I can only read the
first dataset and then it is stoped. What is the mistake?

#include "stdafx.h"
#include <string>
#include <fstream>
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{ ifstream in("d.txt");
char zeile[256];char zeile1[256];char zeile2[256];
string tmp = "";string tmp1= "";string tmp2= "";
in.seekg(0);
while ( in.getline(zeile1,255,'\t'))
{ tmp1 = zeile1;
in.getline(zeile1,255,'\n');
double merke=in.tellg();
in.seekg(0);
while ( in.getline(zeile,255,'\t'))
{ tmp = zeile;
in.getline(zeile2,255,'\n');
tmp2=zeile2;
cout << tmp << " " << tmp2 << endl;
if (tmp==tmp1&&tmp2!=tmp1)
{
cout << string(zeile2) << endl;
}
}
in.seekg(merke);
}
return 0;
}
Many thanks
Bjoern
Jul 22 '05 #1
2 1304

"BjoernJackschina" <ja*******@hotmail.com> wrote in message
news:a2**************************@posting.google.c om...
Hello,
many thanks for the solution of my last problem but I think I will use
my own simple solution.
I don't know what solution you were offered but yours looks extremely
inefficient to me, but maybe you aren't concerned about that.
I want to find anagrams. The file "d.txt"
looks like this:
opts stop
fnu fun
opts post
opts tops
emos some
So I compare every word order but in my programm I can only read the
first dataset and then it is stoped. What is the mistake?
You are forgetting to clear the stream error state after you have reached
the end of file. See correction below.

#include "stdafx.h"
#include <string>
#include <fstream>
#include <iostream>
using namespace std;

int main(int argc, char* argv[])
{ ifstream in("d.txt");
char zeile[256];char zeile1[256];char zeile2[256];
string tmp = "";string tmp1= "";string tmp2= "";
in.seekg(0);
while ( in.getline(zeile1,255,'\t'))
{ tmp1 = zeile1;
in.getline(zeile1,255,'\n');
double merke=in.tellg();
in.seekg(0);
while ( in.getline(zeile,255,'\t'))
{ tmp = zeile;
in.getline(zeile2,255,'\n');
tmp2=zeile2;
cout << tmp << " " << tmp2 << endl;
if (tmp==tmp1&&tmp2!=tmp1)
{
cout << string(zeile2) << endl;
}
}
in.clear();
in.seekg(merke);
}
return 0;
}


You could make your code a lot easier to read if you read directly into a
string instead of using char arrays.

while ( getline(in, tmp1, '\t'))
{

instead of

while ( in.getline(zeile1, 255, '\t'))
{
tmp1 = zeile1;

john
Jul 22 '05 #2
On 9 May 2004 07:00:53 -0700 in comp.lang.c++, ja*******@hotmail.com
(BjoernJackschina) wrote,
while ( in.getline(zeile1,255,'\t'))
{ tmp1 = zeile1;
in.getline(zeile1,255,'\n');
double merke=in.tellg();
in.seekg(0);
while ( in.getline(zeile,255,'\t'))
{ tmp = zeile;


I agree with all of John's comments, and would like to add one more
thing:

All of this seeking around in the file is way too susceptible to
mistakes and will soon make you crazy. It would be easier and simpler
to leave the "in" stream positioned where it is, and create a second
ifstream to the file to read it for the inner pass of the loop.

z.B. (with all variables std::string)

while ( getline(in, anagram1, '\t'))
{
getline(in, zeile1, '\n');

ifstream in_pass2("d.txt");
while ( getline(in_pass2, anagram2, '\t'))
{
getline(in_pass2, zeile2, '\n');

Jul 22 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2144
by: Anders Eriksson | last post by:
Hello! I'm a beginner at PHP and I wonder how I would go about to read a textfile into an array(hash). The textfile looks like this: A/S=age/sex? A/S/L=age/sex/location? AA=alcoholics...
2
1876
by: Suchi | last post by:
Hi all: I want to read a textfile from an ASP program. My program is like this: Set fso = CreateObject("Scripting.FileSystemObject") workFile=http://localhost/Readme.txt) Set textFile =...
2
2562
by: BjoernJackschina | last post by:
Hello, I just look for a capability to sort several words in view of alphabet. An example: stop is 'opst' reach is 'aechr' This should read in a new file so that I can look for same letter...
16
4765
by: Roy | last post by:
I use a Access 2K application.I am trying to use Chuck Grimsby(clsReadTextFile.txt)class utility to read a text file and then do a import of the same into my database.The question is how to call...
2
2586
by: chris | last post by:
Hi there, I am reading in a textfile which looks like this (there is no new line after the last number) 03 98661881 0407 566453 The code to load the textfile looks like this:
2
3012
by: novacreatura | last post by:
Hi, I have a project that's supposed to create a program for a "Dating Service". The first part of the program is to read a textfile of profiles which include names, age, etc...into a string...
1
1414
by: Justin Fancy | last post by:
Hi everyone, I have a textfile which I need to read and compare dates. The text file summarizes every time I do an update to an internet site. Sample output is as follows: Copying...
6
22484
by: =?Utf-8?B?UmljaA==?= | last post by:
'--this code works but only reads text into one column when contains multiple cols Dim ds1x As New DataSet Dim ConStr As String = _ "Provider=Microsoft.Jet.OLEDB.4.0;Data...
3
2885
by: Arn | last post by:
I just started to learn C++ and have some problem when I read a hole line from a textfile. I would be grateful if anyone can tell me what is wrong with my code. I'm using Borland Developer Studio...
1
2803
by: asedt | last post by:
With my Excel macro and two text files I want to create a new textfile containing the first textfile then text from the sheet and then the second textfile. My problem is that i don't know how to...
0
7083
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7328
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7456
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5578
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4672
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3166
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3153
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1510
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
379
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.