私のfoo()
関数が文字列「YAAR」を5の長さとして出力するのはなぜですか?
def foo()
map = Hash.new
File.open('dictionary.txt').each_line{ |s|
word = s.split(',')
if word.any? { |b| b.include?('AA') }
puts word.last
puts word.last.length
end
}
end
someFile.txt
265651,YAAR
265654,YAARS
出力
YAAR
5
YAARS
6