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"
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"