Answers for "ruby trim whitespace"

1

ruby trim spaces

"   Hello  ".strip
Posted by: Guest on December-30-2020
0

ruby string trmi

>> @title = "abc"
=> "abc"
>> @title.strip!
=> nil
>> @title
=> "abc"
>> @title = " abc "
=> " abc "
>> @title.strip!
=> "abc"
>> @title
=> "abc"
Posted by: Guest on May-06-2020

Browse Popular Code Answers by Language