[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

array difference

jabowen

7/5/2007 7:20:00 PM

I?m trying to create an array containing the
difference of the two other arrays. When I create the
arrays manual I have no problems.

a = ["0001", "0002"]
b = ["0001", "0002", "0003"]
c = b - a
puts c
c -> 0003

However when the array is created from data in a file
d will equal the first array not the difference
between the two.

File.open("datafilelist.txt").each { |h| data_files1
<< h}

d = data_files1 - data_files
puts d
-> 0001, 0002

Thoughts?

Jeff Bowen



____________________________________________________________________________________
Luggage? GPS? Comic books?
Check out fitting gifts for grads at Yahoo! Search
http://search.yahoo.com/search?fr=oni_on_mail&p=graduation+gifts...

2 Answers

Xavier Noria

7/5/2007 7:47:00 PM

0

On Jul 5, 2007, at 9:20 PM, Jeffrey Bowen wrote:

> I’m trying to create an array containing the
> difference of the two other arrays. When I create the
> arrays manual I have no problems.
>
> a = ["0001", "0002"]
> b = ["0001", "0002", "0003"]
> c = b - a
> puts c
> c -> 0003
>
> However when the array is created from data in a file
> d will equal the first array not the difference
> between the two.
>
> File.open("datafilelist.txt").each { |h| data_files1
> << h}
>
> d = data_files1 - data_files
> puts d
> -> 0001, 0002

I guess the trailing newline in the elements of data_files1 is the
culprit. In that case push h.chomp instead of h. In any case, inspect
the arrays.

-- fxn


Rob Biedenharn

7/5/2007 7:54:00 PM

0

On Jul 5, 2007, at 3:20 PM, Jeffrey Bowen wrote:
> I’m trying to create an array containing the
> difference of the two other arrays. When I create the
> arrays manual I have no problems.
>
> a = ["0001", "0002"]
> b = ["0001", "0002", "0003"]
> c = b - a
> puts c
> c -> 0003
>
> However when the array is created from data in a file
> d will equal the first array not the difference
> between the two.
>
> File.open("datafilelist.txt").each { |h| data_files1
> << h}
>
> d = data_files1 - data_files
> puts d
> -> 0001, 0002
>
> Thoughts?
>
> Jeff Bowen

You haven't shown enough code to get any help! What is data_files?
Giving us a sample of the contents of "datafilelist.txt" would be
quite useful, too.

-Rob

Rob Biedenharn http://agileconsult...
Rob@AgileConsultingLLC.com
k