比如
%Q( a b c )
输出时是“abc”
s=%Q(a\ b\ c\ d) print s
#1 楼 @africwildman 谢谢,不过虽然是单行显示,中间会有空格,这个怎么办?
%Q( a b c ).gsub(/\s+/,'')
#3 楼 @fayake 多谢~