您的位置:

Python字符串处理:startsWith()和endsWith()

一、startsWith() 和 endsWith() 方法简介

startsWith() 和 endsWith() 方法是 Python 字符串的两个常用方法之一,它们分别用于判断一个字符串是否以指定的前缀或后缀开始或结束。

startsWith() 方法接受一个参数,即要匹配的前缀。这个方法会比较原始字符串和要匹配的前缀,判断原始字符串是否以该前缀开始。

str.startswith(prefix[, start[, end]])

其中,start 和 end 可选,表示开始和结束匹配的索引位置。

endsWith() 方法与 startsWith() 方法非常相似,它接受一个要匹配的后缀参数。它比较原始字符串和要匹配的后缀,判断原始字符串是否以该后缀结束。

str.endswith(suffix[, start[, end]])

其中,start 和 end 可选,表示开始和结束匹配的索引位置。

二、startsWith() 和 endsWith() 方法的用法

startsWith() 和 endsWith() 方法的主要用法是在字符串匹配中。这些方法可以帮助我们判断字符串是否以一段指定的前缀或后缀开始或结束。

以下是 startsWith() 方法的示例代码:

str1 = "Python is easy to learn."
print(str1.startswith('Python'))  # True
print(str1.startswith('is', 7, 9)) # True
print(str1.startswith('easy', 10)) # False

上述代码中,通过 startsWith() 方法分别判断字符串 str1 是否以 Python、is 和 easy 开始。

endsWith() 方法的使用方法与 startsWith() 方法极其相似,以下是一段 endsWith() 方法的示例代码:

str2 = "Python is easy to learn."
print(str2.endswith('learn.'))  # True
print(str2.endswith('easy', 7, 11)) # True
print(str2.endswith('Python', 0, 6)) # False

上述代码中,通过 endsWith() 方法分别判断字符串 str2 是否以 learn.、easy 和 Python 结尾。

三、startsWith() 和 endsWith() 方法的应用场景

startsWith() 和 endsWith() 方法可以应用于多种场景。例如,可以用它们来判断一个 URL 是否以 http 或 https 开头,在文件读取中判断文件扩展名是否为指定类型等。

以下是 startsWith() 方法的一个应用场景示例:

url = "https://www.example.com"
if url.startswith('https://'):
    print('This is a secure URL')

上述代码中,开始判断 url 是否以 https:// 开头。如果是,则输出 “This is a secure URL”。

以下是 endsWith() 方法的一个应用场景示例:

file_name = 'example.txt'
if file_name.endswith('.txt'):
    print('This is a text file')

上述代码中,判断 file_name 是否以 .txt 结尾。如果是,则输出 “This is a text file”。

四、总结

startsWith() 和 endsWith() 方法是 Python 字符串处理中的两个常用方法。它们通过比较字符串以判断是否以指定前缀或后缀开始或结束。在应对多种场景时,这两个方法可以帮助我们简化代码的编写和匹配操作。