For example, str = 'abcdefg'. How do I find the index if c in this string using Ruby?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
index(substring [, offset]) → fixnum or nil index(regexp [, offset]) → fixnum or nil Returns the index of the first occurrence of the given substring or pattern (regexp) in str. Returns nil if not found. If the second parameter is present, it specifies the position in the string to begin the search. "hello".index('e') #=> 1 "hello".index('lo') #=> 3 "hello".index('a') #=> nil "hello".index(?e) #=> 1 "hello".index(/[aeiou]/, -3) #=> 4 check out ruby document For more information http://www.ruby-doc.org/core-1.9.3/String.html |
|||
|
|
Hope it helps. :) |
|||
|
|