TA贡献1853条经验 获得超9个赞
ruby的String类有一个方法叫chomp,用来去掉字符串末尾的\n或\r例子这样"hello".chomp #=> "hello""hello\n".chomp #=> "hello""hello\r\n".chomp #=> "hello""hello\n\r".chomp #=> "hello\n""hello\r".chomp #=> "hello"
举报