标签: ruby string reference
有一种方法可以返回字符串的一部分并更改变量的引用。例如:
old_string = 'hello this is a test'
返回'Hello'和old_string的方法变为'this is a test'。
'Hello'
old_string
'this is a test'
答案 0 :(得分:-1)
试试这个。
old_string = 'hello this is a test' old_string.slice! /^\S+\s+/