Python中不区分大小写的字符串endswith()
要以不区分大小写的方式使用 str.endswith()
方法:
-
使用
str.lower()
将两个字符串都转换为小写。 -
对小写字符串使用
str.endswith()
方法。
string = 'jiyik.com'
substring = 'COM'
if string.lower().endswith(substring.lower()):
# 👇️ this runs
print('The string ends with the substring (case-insensitive)')
else:
print('The string does NOT end with the substring (case-insensitive)')
# 👇️ True
print(
string.lower().endswith(substring.lower())
)
str.lower()
方法返回字符串的副本,其中所有大小写字符都转换为小写。
在使用 str.endswith()
方法之前,我们使用 str.lower()
方法将两个字符串都转换为小写。
当两个字符串都转换为相同大小写时,我们可以以不区分大小写的方式使用
str.endswith()
方法。
如果我们的字符串包含非 ASCII 字母,请使用 str.casefold()
方法而不是 str.lower()
。
string = 'jiyik.com'
substring = 'COM'
if string.casefold().endswith(substring.casefold()):
# 👇️ this runs
print('The string ends with the substring (case-insensitive)')
else:
print('The string does NOT end with the substring (case-insensitive)')
# 👇️ True
print(
string.casefold().endswith(substring.casefold())
)
str.casefold()
方法返回字符串的大小写副本。
# 👇️ using str.casefold()
print('JIYIK'.casefold()) # 👉️ jiyik
print('ß'.casefold()) # 👉️ ss
# 👇️ using str.lower()
print('JIYIK'.lower()) # 👉️ jiyik
print('ß'.lower()) # 👉️ ß
大小写折叠类似于小写,但更具侵略性,因为它旨在删除字符串中的所有大小写区别。
请注意德语小写字母
ß
如何等于 ss。
由于字母已经是小写字母,
str.lower()
方法按原样返回字母,而str.casefold()
方法将其转换为 ss。
如果我们只比较 ASCII 字符串,则不需要使用 str.casefold()
方法。 在这种情况下,使用 str.lower()
就足够了。
相关文章
Python pandas.pivot_table() 函数
发布时间:2024/04/24 浏览次数:82 分类:Python
-
Python Pandas pivot_table()函数通过对数据进行汇总,避免了数据的重复。
在 Python 中将 Pandas 系列的日期时间转换为字符串
发布时间:2024/04/24 浏览次数:894 分类:Python
-
了解如何在 Python 中将 Pandas 系列日期时间转换为字符串
在 Python Pandas 中使用 str.split 将字符串拆分为两个列表列
发布时间:2024/04/24 浏览次数:1124 分类:Python
-
本教程介绍如何使用 pandas str.split() 函数将字符串拆分为两个列表列。
在 Pandas 中将 Timedelta 转换为 Int
发布时间:2024/04/23 浏览次数:231 分类:Python
-
可以使用 Pandas 中的 dt 属性将 timedelta 转换为整数。
Python 中的 Pandas 插入方法
发布时间:2024/04/23 浏览次数:112 分类:Python
-
本教程介绍了如何在 Pandas DataFrame 中使用 insert 方法在 DataFrame 中插入一列。
使用 Python 将 Pandas DataFrame 保存为 HTML
发布时间:2024/04/21 浏览次数:106 分类:Python
-
本教程演示如何将 Pandas DataFrame 转换为 Python 中的 HTML 表格。
如何将 Python 字典转换为 Pandas DataFrame
发布时间:2024/04/20 浏览次数:73 分类:Python
-
本教程演示如何将 python 字典转换为 Pandas DataFrame,例如使用 Pandas DataFrame 构造函数或 from_dict 方法。
如何在 Pandas 中将 DataFrame 列转换为日期时间
发布时间:2024/04/20 浏览次数:101 分类:Python
-
本文介绍如何将 Pandas DataFrame 列转换为 Python 日期时间。