2012-03-27 65 views
-6

可能重複:
Reverse a string in Ruby如何Ruby實現字符串反轉功能

使用Python中擴展切片,字符串實現反向可以這樣寫

>>> 'hello world'[::-1] 
'dlrow olleh' 

我不知道如何將一個字符串實現逆轉功能在Ruby中

+0

你爲什麼要尋找另一種方式來做到這一點的紅寶石?在紅寶石中,有一個真正的方法來做倒退。 – 2012-03-27 17:14:01

+0

ruby​​反向函數是如何實現的? – vireshas 2012-03-27 17:16:18

+0

@JouniK.Seppänen所有這些解決方案都不如這個Python代碼段 – vireshas 2012-03-27 17:21:31

回答

0
>> "Hello world".reverse 
=> "dlrow olleH"