BT编程语言文档
last_index
返回在字符串中最后一次找到指定值的索引,如果不存在则返回 -1语法 Str.last_index(string:Str)
string:必填,用于查找的字符串
str = 'hello, world!' println str.last_index('o') // 输出:7 println str.last_index('planet') // 输出:-1语法 Str.last_index(string:Str)
string:必填,用于查找的字符串
str = 'hello, world!' println str.last_index('o') // 输出:7 println str.last_index('planet') // 输出:-1