开发者社区> 问答> 正文

符号数组有文字表示法吗?

我喜欢字符串数组的文字表达:

%w( i can easily create arrays of words ) 我想知道是否有文字来获取符号数组。我知道我能做

%w( it is less elegant to create arrays of symbols ).map( &:to_sym ) 但是仅仅使用文字就太好了

展开
收起
保持可爱mmm 2020-02-06 22:53:52 388 0
1 条回答
写回答
取消 提交回答
  • 不幸的是,在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

    2020-02-06 22:54:44
    赞同 展开评论 打赏
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载