文章列表
Thirty-seven Reasons I Love Ruby
我爱 Ruby 的三十七个理由
by Hal Fulton
这里我就不累述 Ruby 语言的历史了。如果您还不了解 Ruby,官方网站 www.ruby-lang.org 是最好的去处,新闻组是 comp.lang.ruby 。而对于已经了解 Ruby 的各位,我在此给出我 ...
- 2006-09-27 12:52
- 浏览 2156
- 评论(0)
split()
trim()
indexOf()
replaceAll()
##ruby:
String.split
"hello world".split( " ")
returns [ "hello", "world" ].
String.strip
" hello world ".strip
returns "hello world".
String.index
"hello world".index( "w")
retur ...
- 2006-09-26 08:04
- 浏览 3944
- 评论(0)