美文网首页
python根据开头和结尾字符串获得指定字符串的中间字符串的代码

python根据开头和结尾字符串获得指定字符串的中间字符串的代码

作者: 程序媛宝 | 来源:发表于2019-02-08 09:48 被阅读0次

    在学习闲暇时间,将写内容过程比较常用的内容片段做个记录,下面内容是关于python根据开头和结尾字符串获得指定字符串的中间字符串的内容,应该能对小伙伴也有用途。

    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__':

    返回结果

    相关文章

      网友评论

          本文标题:python根据开头和结尾字符串获得指定字符串的中间字符串的代码

          本文链接:https://www.haomeiwen.com/subject/enmnsqtx.html