问题
I have the following code
class MyClass
def my_method(first,last)
#this should take 2 numbers as arguments and should return the keys value(s) as a combined string
end
private
def lines_of_code
{
1 => "This is first",
2 => "This is second",
3 => "This is third",
4 => "This is fourth",
5 => "This is fifth"
}
end
m = MyClass.new
m.my_method(2,4) # This is secondThis is thirdThis is fourth"
I should pass a range to my_method that inturn should return me the combined value string. Sorry if this is already posted.
Thanks in advance.
回答1:
Here is a trick using Hash#values_at:
class MyClass
def my_method(first, last)
lines_of_code.values_at(*first..last)
end
private
def lines_of_code
{
1 => "This is first",
2 => "This is second",
3 => "This is third",
4 => "This is fourth",
5 => "This is fifth"
}
end
end
m = MyClass.new
p m.my_method(2,4)
# >> ["This is second", "This is third", "This is fourth"]
# to get a string
p m.my_method(2,4).join(" ")
# >> "This is second This is third This is fourth"
回答2:
lines_of_code.values_at(*first..last).join
来源:https://stackoverflow.com/questions/27835569/get-all-the-key-values-as-a-combined-string-when-a-range-of-keys-are-defined-usi