时间:2021-07-01 10:21:17 帮助过:103人阅读
这里给定一个字符串,指定开头和结尾的字符串,返回中间包夹的字符串,比如:
content:
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('bitsCN.com','',''))
希望本文所述对大家的Python程序设计有所帮助。