I want to strip all characters after a third character, say - for instance.
I found this code online and it works but I'm having trouble learning how it works and wanted to ask so I can understand it fully.
def indexList(s, item, i=0):
"""
Return an index list of all occurrances of 'item' in string/list 's'.
Optional start search position 'i'
"""
i_list = []
while True:
try:
i = s.index(item, i)
i_list.append(i)
i += 1
except:
break
return i_list
def strip_chrs(s, subs):
for i in range(indexList(s, subs)[-1], len(s)):
if s[i+1].isalpha():
return data[:i+1]
data = '115Z2113-3-777-55789ABC7777'
print strip_chrs(data, '-')
Here's my questions on the while True: line what's true? Also on the except: Except what? and why does is a break coded there?
Thanks in advance!
printstatement. – Sven Marnach Nov 17 '11 at 16:51dataexample are you trying to strip out everything after115Z2113-3-777? – Casey Nov 17 '11 at 16:51