chomp:去掉字符串末尾的\n或\r
chop:去掉字符串末尾的最后一个字符,不管是\n\r还是普通字符
to_s:转换成字符串
to_i:转换成数值
object.nil?:判断是否为空,空返回:true
s1 = s.downcase #"hello,world"
s2 = s.upcase #"HELLO,WORLD"
" hello ".lstrip #=> "hello ""hello".lstrip #=> "hello"
posted on 2014-08-25 15:36 马文柱 阅读(112) 评论(0) 编辑 收藏 举报