str.index(pattern)
使用index() method.这将返回索引,如果找到,否则返回nil.
用法:
ruby-1.9.2-p136 :036 > str = "Ruby is awesome" => "Ruby is awesome" ruby-1.9.2-p136 :037 > str.index("is awesome") => 5 ruby-1.9.2-p136 :038 > str.index("testtest") => nil