Re: string Index for the last position

2009-04-28 Thread Clarendon
Dear Christian Thank you so much! It works! -- http://mail.python.org/mailman/listinfo/python-list

Re: string Index for the last position

2009-04-28 Thread Christian Heimes
Clarendon schrieb: > I am trying to get the index for the last occurrance of a sub string. > > S = 'dab dab dab' > print S.find('ab') > 1 > > This gives me the index for the first position of 'ab'. > But I need to index the last position of 'ab' here. > Is there a quick option for find that will

string Index for the last position

2009-04-28 Thread Clarendon
I am trying to get the index for the last occurrance of a sub string. S = 'dab dab dab' print S.find('ab') 1 This gives me the index for the first position of 'ab'. But I need to index the last position of 'ab' here. Is there a quick option for find that will do this, or do I have to write a long