我在这个 list 中找不到使用 Ruby 的宏定义整数列表的方法。
这是我唯一的选择吗?
%w(123 456).map { |i| i.to_i }
我认为%i(123 456)
会包括在内,但我想不会。
我在这个 list 中找不到使用 Ruby 的宏定义整数列表的方法。
这是我唯一的选择吗?
%w(123 456).map { |i| i.to_i }
我认为%i(123 456)
会包括在内,但我想不会。
像这样的实用方法可以处理引用和转义问题,这些问题都不存在于数字列表中。
例如,处理同时使用两种引用样式的情况:
'Johnny\'s dad\'s friend said, "I really hate backslashes!"'
%Q{Johnny's dad's friend said, "I really hate backslashes!"}
对于字符串列表:
[ 'this', 'that', 'and', 'the', 'other', 'thing' ]
%w[ this that and the other thing ]
对于经常出现斜线的正则表达式:
/https?:\/\/([\w\-]+).com\//
%r{https?://([\w\-]+).com/}
但是,在定义数字列表时,不需要特定的转义。