str.find(sub)获取最后一个字符索引,而不是第一个字符索引

时间:2017-02-05 10:58:57

标签: python string find

我想知道是否有内置的方法来实现这个目标:

>>> my_str = 'This is just a test string'
>>> to_find = 'just'
>>> my_str.find(to_find)
8                                            # what I normally get
>>> my_str.find(to_find) + len(to_find) - 1
11                                           # what I want to get
>>>

这是获得我想要的结果的更好和“pythonic”的方法吗?

0 个答案:

没有答案