Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-12-26から1日間の記事一覧

Ruby | String | chomp!

概要 String#chomp!(rs = $/) -> self | nil 詳細 String#chomp の破壊的メソッド。破壊的であること以外は、 chomp と同じ http://docs.ruby-lang.org/ja/2.1.0/method/String/i/chomp.html サンプルコード hoge1 = "hoge\n" hoge2 = "hoge\r\n" hoge3 = "h…