Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个例子来自 ruby 文档。
"hello".rindex(/[aeiou]/, -2) #=> 1
为什么这个输出 1 而不是 4?
因为第二个参数。从文档
如果存在第二个参数,则它指定字符串中结束搜索的位置——超出此点的字符将不被考虑。
所以
"hello".rindex(/[aeiou]/) => 4