返回指定片段最后一次出现的位置。
string.last_index_of(needle)
text = 'bt-lang-bt' result = text.last_index_of('bt') // 输出:8 print result