Re: Lines of Strings

2005-09-17 Thread Tom Anderson
On Thu, 15 Sep 2005, Reem Mohammed wrote: > Suppose we have data file like this one (Consider all lines as strings ) > > 1 2 3 3 4 4 4 4 5 6 > 2 2 2 5 5 5 6 > 3 2 1 1 1 3 3 3 4 6 > > I would like to remove line if its belong to another one, and will be > able to do this if longer line come after

Re: Lines of Strings

2005-09-16 Thread Larry Bates
If these were the lines what would the output look like? >From your example it doesn't appear that any of the lines would be eliminated. Larry Bates Reem Mohammed wrote: > Hi > > Suppose we have data file like this one (Consider all lines as strings ) > > 1 2 3 3 4 4 4 4 5 6 > 2 2 2 5 5 5 6 > 3

Re: Lines of Strings

2005-09-16 Thread bruno modulix
Reem Mohammed wrote: > Hi > > Suppose we have data file like this one (Consider all lines as strings ) > > 1 2 3 3 4 4 4 4 5 6 > 2 2 2 5 5 5 6 > 3 2 1 1 1 3 3 3 4 6 > > I would like to remove line if its belong to another one, and will be > able to do this if longer line come after a short one.