我偶然发现了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但我找不到任何关于它的东西.