帮我编写rails代码以删除以下代码的逗号
<%
student = []
student << "About Section:"
student << student_input(@input, :section_name)
student << student_input(@input, :section_strength)
%>
<%= student.join(", ") %>
我的输出为“关于部分:部分名称,部分强度”
我只想删除“关于部分:”后的逗号(,)
答案 0 :(得分:4)
似乎这样做更容易:
About Section: <%= student_input @input, :section_name %>, <%= student_input @input, :section_string %>
答案 1 :(得分:1)
这里你去:
"#{student.shift} #{student.join(', ')"