ruby中的“$”是什么意思?

前端之家收集整理的这篇文章主要介绍了ruby中的“$”是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我偶然发现了rails源代码中的这段代码
# File actionpack/lib/action_view/helpers/output_safety_helper.rb,line 30
def safe_join(array,sep=$,)
  sep ||= "".html_safe
  sep = ERB::Util.html_escape(sep)

  array.map { |i| ERB::Util.html_escape(i) }.join(sep).html_safe
end

什么是$,做什么?我读了Regexp-documentation但我找不到任何关于它的东西.

解决方法

我终于找到了自己的答案 here

The output field separator for the print. Also,it is the default separator for Array#join. (Mnemonic: what is printed when there is a,in your print statement.)

以下代码显示效果

a = [1,2,3]

puts a.join # => 123

$,= ','
puts a.join # => 1,3
原文链接:https://www.f2er.com/ruby/265729.html

猜你在找的Ruby相关文章