Ruby lines関数で改行区切単位で文字列を変更する方法

環境
Windows10 Home 64bit
ruby 3.1.2p20

書式
文字列.lines(chomp: true)
「lines(chomp: true)」を使って改行区切り単位で文字列を配列に変更します。

使用例

p "study\nskill\nbecome\nsmart".lines(chomp: true) 

p "\ntest\ndata\ninfo\n123".lines(chomp: true)

実行結果
[“study", “skill", “become", “smart"]
[“", “test", “data", “info", “123"]

Ruby

Posted by arkgame