我喜欢字符串数组的文字表达:
%w( i can easily create arrays of words ) 我想知道是否有文字来获取符号数组。我知道我能做
%w( it is less elegant to create arrays of symbols ).map( &:to_sym ) 但是仅仅使用文字就太好了
不幸的是,在Ruby 1.x中,可用%分隔符的列表是有限的
Modifier Meaning %q[ ] Non-interpolated String (except for \ [ and ]) %Q[ ] Interpolated String (default) %r[ ]
Interpolated Regexp (flags can appear after the closing delimiter) %s[ ] Non-interpolated Symbol %w[ ] Non-interpolated Array of words, separated by whitespace %W[ ] Interpolated Array of words, separated by whitespace %x[ ] Interpolated shell command
问题来源于stack overflow
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。