📅  最后修改于: 2023-12-03 15:00:17.370000             🧑  作者: Mango
在C#中,字符串是一种不可变的数据类型,表示为string
。EndsWith()
方法是string
类提供的一个方法,用于检查一个字符串是否以指定的后缀结尾。该方法返回一个布尔值,表示字符串是否以指定后缀结尾。
该方法的语法如下所示:
public bool EndsWith(string value)
value
:要检查的后缀字符串。该方法返回一个布尔值,表示字符串是否以指定的后缀结尾。如果字符串以指定的后缀结尾,则返回true
;否则返回false
。
string myString = "Hello, world!";
bool endsWithWorld = myString.EndsWith("world!");
bool endsWithUniverse = myString.EndsWith("universe");
endsWithWorld
的值将为true
,因为myString
字符串以"world!"结尾。endsWithUniverse
的值将为false
,因为myString
字符串不以"universe"结尾。EndsWith()
方法区分大小写,所以后缀字符串的大小写必须与原始字符串的结尾部分匹配。true
。EndsWith()
方法检查文件名的扩展名,例如:.txt
、.jpg
等。EndsWith()
方法是C#字符串类的一个有用的成员,用于检查字符串是否以指定的后缀结尾。这在许多字符串处理和文本处理的情况下非常实用。