in Python, we can e.g.
"[foo ]".strip(" []") # -> "foo"
how do we do this in Ruby? string strip method is stripping only whitespace ..
UPDATE
stripping is not deleting! : )
"[ foo boo ]".strip(" []") # -> "foo boo"
|
|
|
There is no such method in ruby, but you can easily define it like:
|
|||||||||
|
Can also be shortenend to
|
|||
|
|
|
Try the gsub method:
etc. |
|||||||||||||
|