Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second Index solution in Clear category for Second Index by Ledorub
def second_index(text, symbol):
i = text.find(symbol, text.find(symbol) + 1)
return i if i != -1 else None
Feb. 12, 2018