猿问
ruby on rails中怎样去掉字符串结尾处的回车?
ruby on rails中怎样去掉字符串结尾处的回车
蓝山帝景
浏览 1086
回答 1
1回答
暮色呼如
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"
0
0
0
随时随地看视频
慕课网APP
相关分类
Ruby
我要回答