Now i have an array with the distinct names like:
a.txt
b.txt
c.txt
d.txt
…
z.txt
, but every file “have 20 parts” which i have to proceed:
00_a.txt
01_a.txt
02_a.txt
…
19_a.txt
for i in 0…19
filenames.map{ |t| if i < 10 then p “0#{i}#{t}" else p
"#{i}#{t}” end }
end
I find something about MultiValuedHash, but i didn’t know how i get my
structure (…the distinct names are the keys and the 20 parts for
every key as values ) like the raw_data in an easy way.
If you use the hash idiom Robert showed you, you won’t have to worry
about checking for uniqueness, because all keys are unique. They’ll
be created the first time you use them, and updated each time after
that. So, the filename is your key, and the file parts get added to
the array referenced by that key. I also used e[3…-1] instead of
e[3…50]. This will return the string from the 3rd character to the
end of the string, regardless of length.
hash = Hash.new {|h,k| h[k] = []}
Dir.entries(".").each do |e|
filename = e[3…-1]
hash[filename].push e
end
But have anybody an advice how i get the filenames a.txt, b.txt …
as key and the parts 00_a.txt , 01_a.txt, 02_a.txt as values for
every key.
i identify a mistake to get the unique names i have to:
Dir.entries(“f:/base_data/ADS20/outputdaten/”).each { |e|
files.push(e[3…50])}
filenames.push(files.select{|e| files.index(e) !=
files.rindex(e)}.uniq)
many thanks & regards
Christian
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.