今天给大家分享一下python字符串截取中间字符的方法,具体如下:
这里给定一个字符串,指定开头和结尾的字符串,返回中间包夹的字符串,比如:
content:
jb51.net
startStr:
endStr:
返回结果:jb51.net
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('
jb51.net
','
','
'))
好啦,关于python字符串截取中间字符的分享就到这里,更多内容干货可关注慕课网其他相关文章~