So I have this hash below:
a_hash = {
"1" => "one",
"2" => "two",
"3" => "three",
"4" => "four",
"5" => "five",
"6" => "six",
"7" => "seven",
"8" => "eight",
"9" => "nine",
"10" => "ten",
"11" => "eleven",
"12" => "twelve",
"13" => "thirteen",
"14" => "fourteen",
"15" => "fifteen",
"16" => "sixteen",
"17" => "seventeen",
"18" => "eighteen",
"19" => "nineteen",
"20" => "twenty",
"30" => "thirty",
"40" => "forty",
"50" => "fifty",
"60" => "sixty",
"70" => "seventy",
"80" => "eighty",
"90" => "ninety",
"00" => "hundred", #not sure this is right
"000" => "thousand" #not sure this is right
}
Lets say my string input is "99100". Lets say I want my string output to be "ninty nine thousand one hundred". How do I go about using my hash above without typing each key/value. I was thinking maybe split my string at each char into an array....then for each number in that array return my value? Any other stratgies I should consider? This is what I have so far:
puts "test the hash! Type a number hit enter"
test_variable = gets.to_s.chomp
puts a_hash[test_variable]
Post some code so I can try out. Thanks!