1

有没有办法在多行而不是一行中编写一个很长的 xml 请求?当我在多行中编写它时,由于插入了换行符,该字符串不被接受。如何在文本编辑器中添加换行符并在实际程序中添加换行符?我正在使用崇高。

4

1 回答 1

3

红宝石

str = "this is \n multi-line \n text \n\n"
puts str 
# this is
# multi-line
# text

使用gsub!修改字符串

str.gsub!("\n","") 
puts str # this is  multi-line  text

导轨

使用squish删除所有不必要的空白

str = "this is \nmulti-line \n text \n\n"
puts str.squish # this is multi-line text
于 2012-10-22T08:36:40.800 回答