Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何去除字符串前面和结尾的空格。
例如“你好”或“你好”会像这样“你好”
它被称为String#strip:)
String#strip
'Hello '.strip # => "Hello" ' Hello'.strip # => "Hello"