I want to use Proc, but I have no idea how to call the Proc in the array iterator. If possible, could you also suggest how to do this with MODULES?
esp. the part "result << (p.call(x))
def translate (str)
word = str.split(" ")
result = []
word.each do |x|
result << (p.call(x))
end
result.join(" ")
end
p = Proc.new do |single_word|
temp_array = single_word.split('')
num = ( single_word =~ /[aeiou]/)
num.times do
temp = temp_array.shift
temp_array << temp
end
temp_array << "ay"
temp_array.join("")
end
translate("best")
If you want to use a block of code from within a method, without needing to pass it around (meaning it is not dynamically decided) - why not simply use a method?
if you want to declare it in a module, you can do it either by including it:
word_translator.rb
translator.rb
Or, declare it as a class method:
word_translator.rb
translator.rb