Ruby 文字列の左側にある半角空白を除去するサンプル
環境
Windows11 Pro 64bit
ruby 3.1.2p20
構文
文字列.lstrip
文字列の左側にある半角空白を除去するには「lstrip」を使用します。
使用例
p " study ".lstrip p " arkgame ".lstrip p " s t d ".lstrip
実行結果
“study "
“arkgame "
“s t d “
Coding Changes the World
環境
Windows11 Pro 64bit
ruby 3.1.2p20
構文
文字列.lstrip
文字列の左側にある半角空白を除去するには「lstrip」を使用します。
使用例
p " study ".lstrip p " arkgame ".lstrip p " s t d ".lstrip
実行結果
“study "
“arkgame "
“s t d “