我很努力地找到解決方案。我如何從字符串中刪除第一個字詞,如下面的字符串。紅寶石從字符串中刪除第一個字
"i am going to school"
"he is going to school"
"she is going to school"
"they are going to school"
這樣字符串可以是任意的字符串,不知道第一word.but的確切長度只是想刪除第一個字。
的結果應該是像下面
"am going to school"
"is going to school"
"is going to school"
"are going to school"
任何幫助嗎?
感謝
或者替代切片,' 「我要上學」 .split( ' ').drop(1)。加入('')'使用[可枚舉.drop](http://ruby-doc.org/core-2.0/Enumerable.html#method-i-drop)跳過第一個元素。 – 2013-03-25 11:26:22