本文实例讲述了python根据开头和结尾字符串获取中间字符串的方法。分享给大家供大家参考。具体分析如下:
这里给定一个字符串,指定开头和结尾的字符串,返回中间包夹的字符串,比如:
content:<div class="a">uoften.com</div>
startStr:<div class="a">
endStr:</div>
返回结果:uoften.com
def GetMiddleStr(content,startStr,endStr):
startIndex = content.index(startStr)
if startIndex>=0:
startIndex += len(startStr)
endIndex = content.index(endStr)
return content[startIndex:endIndex]
if __name__=='__main__':
print(GetMiddleStr('<div class="a">uoften.com</div>','<div class="a">','</div>'))
希望本文所述对大家的Python程序设计有所帮助。
最后
以上就是怕孤独大雁最近收集整理的关于python根据开头和结尾字符串获取中间字符串的方法的全部内容,更多相关python根据开头和结尾字符串获取中间字符串内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复