def GetItemNextPos(source, head, tail, startpos): # return [item, nextpos]
p1 = source.find(head, startpos)
p2 = source.find(tail, p1+len(head))
if p1==-1:
return ["",len(head)]
else:
return [source[p1+len(head):p2], p2+len(tail)]
'Coding > Python Matlab' 카테고리의 다른 글
PDF 파일에서 텍스트 추출 - slate (0) | 2016.09.01 |
---|---|
Python Algorithmic Trading (0) | 2016.08.14 |
한글 포함된 웹사이트 스크래핑시 (0) | 2016.03.17 |
파이썬을 쓰게 되는 이유 (0) | 2013.07.10 |
linux distro summary (0) | 2013.06.24 |