python根据开头和结尾字符串获取中间字符串的方法
本文实例讲述了python根据开头和结尾字符串获取中间字符串的方法。分享给大家供大家参考。具体分析如下:
这里给定一个字符串,指定开头和结尾的字符串,返回中间包夹的字符串,比如:
content:<divclass="a">jb51.net</div>
startStr:<divclass="a">
endStr:</div>
返回结果:jb51.net
defGetMiddleStr(content,startStr,endStr):
startIndex=content.index(startStr)
ifstartIndex>=0:
startIndex+=len(startStr)
endIndex=content.index(endStr)
returncontent[startIndex:endIndex]
if__name__=='__main__':
print(GetMiddleStr('<divclass="a">jb51.net</div>','<divclass="a">','</div>'))
希望本文所述对大家的Python程序设计有所帮助。