ruby trim whitespace code example
Example 1: ruby trim spaces
" Hello ".strip
Example 2: ruby string trmi
>> @title = "abc"
=> "abc"
>> @title.strip!
=> nil
>> @title
=> "abc"
>> @title = " abc "
=> " abc "
>> @title.strip!
=> "abc"
>> @title
=> "abc"