python 返回以start开头并以end结尾的子字符串

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 返回以start开头并以end结尾的子字符串相关的知识,希望对你有一定的参考价值。

def get_complete_string(s,start,end):
    # returns a substring starting with start and ending with end
    # By: Cody Kochmann
    unique="~~~~the~obvious~way~to~do~it~~~~"
    return(start+s.replace(start, unique).replace(end, unique).split(unique)[1]+end)

以上是关于python 返回以start开头并以end结尾的子字符串的主要内容,如果未能解决你的问题,请参考以下文章

python 字符串切片

匹配以 2 个字母开头并以 3 个字母结尾的正则表达式

Python endswith()方法

Perl - 如何从文本文件中省略行?

如何在一个select语句中同时使用starts_with和ends_with?

提取以相同的两个字符开头并以数字字符结尾的文本