summaryrefslogtreecommitdiff
path: root/sample/freq.rb
blob: 362753f71fff50206900a89254f65848ebf4bd49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# word occurrence listing
# usege: ruby freq.rb file..
freq = Hash.new(0)
while line = gets()
  line.scan(/\w+/) do |word|
    freq[word] += 1
  end
end

for word in freq.keys.sort!
  print word, " -- ", freq[word], "\n"
end
2008-01-15* encoding.c (ENC_REGISTER): use &OnigEncoding*.naruse 2008-01-08* enc/utf_{16,32}{be,le}.c: renamed to match with encoding names.nobu