Ruby stripで文字列の前後にある半角空白を除去する
環境
Windows10 Home 64bit
ruby 3.1.2p20
書式
対象文字列.strip
文字列の前後にある半角空白を除去するには「strip」を使用します。
使用例
p " study ".strip p " study ".strip p " s t u ".strip
実行結果
“study"
“study"
“s t u"
Coding Changes the World
環境
Windows10 Home 64bit
ruby 3.1.2p20
書式
対象文字列.strip
文字列の前後にある半角空白を除去するには「strip」を使用します。
使用例
p " study ".strip p " study ".strip p " s t u ".strip
実行結果
“study"
“study"
“s t u"