哪种方法具有在 x 字符后插入内容的功能。
例如,我有这个字符串:
@test = "Something, is wrong"
然后可以执行以下操作:
@test.insert(x words or x characters , '<br />')
<br />
我需要这个,因为我需要在需要拆分的长字符串中插入换行符 。
哪种方法具有在 x 字符后插入内容的功能。
例如,我有这个字符串:
@test = "Something, is wrong"
然后可以执行以下操作:
@test.insert(x words or x characters , '<br />')
<br />
我需要这个,因为我需要在需要拆分的长字符串中插入换行符 。
您应该首先查看 Ruby 文档中的 String 类。http://www.ruby-doc.org/core-1.9.3/String.html
试一试你认为你正在寻找的方法可能被称为......在你的情况下插入并看看它说什么......
"abcd".insert(3, 'X') #=> "abcXd"