Hi all,
Ruby 的 String 有没有提供什么方法能够把一个字符串完全重写的?
比如
a = 'hello world' b = a a.Xxxx 'ruby china' b.should == 'ruby china'
的办法?
我现在只能想到的最简单的办法是用
a[0..-1] = 'ruby china'
但是看上去不美观 Ruby 有啥原生方法实现不? 谢谢
String#replace ?
String#replace
#1 楼 @doitian 不错 谢谢!