「Ruby」stripで文字列の前後にある半角空白を除去する
構文
文字列.strip
「strip」を使用して文字列の前後にある半角空白を除去します。
使用例
#!/usr/bin/ruby p " study ".strip p " study ".strip p " s t u d y ".strip
実行結果
“study"
“study"
“s t u d y"
Coding Changes the World
構文
文字列.strip
「strip」を使用して文字列の前後にある半角空白を除去します。
使用例
#!/usr/bin/ruby p " study ".strip p " study ".strip p " s t u d y ".strip
実行結果
“study"
“study"
“s t u d y"