从字符串中获取字符的倒数第二次出现

时间:2012-12-07 03:15:06

标签: python-3.x

如何获得字符串中字符的倒数第二次? 我想用它从aaa

获取www.example.com/example/abc/aaa

1 个答案:

答案 0 :(得分:0)

我喜欢正则表达式:

import re
p = re.compile('a')
all_positions = [oMatch.span() for oMatch in p.finditer(sText)]
second_last_position_span = all_positions[-2]   
second_last_position_start_index = second_last_position_span[0]