标签: ruby-on-rails-3.2 ruby-1.9.3
我曾尝试将其转换为数组,然后尝试使用join(','),但这不会在句子中转换任何伙伴帮助。 转换此字符串
join(',')
"[\"one\", \"two\", \"three\"]"
到句子one, two, three
one, two, three
已更新:
**由gsub
gsub
.gsub(/(\[\"|\"\])/, '').split('", "')
我已经使用了这个并获得[" one", "two", "three"],还有其他方法可以像这样转换它
[" one", "two", "three"]