📜  C#字符串EndsWith()方法(1)

📅  最后修改于: 2023-12-03 15:00:17.370000             🧑  作者: Mango

C#字符串EndsWith()方法

概述

在C#中,字符串是一种不可变的数据类型,表示为stringEndsWith()方法是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#字符串类的一个有用的成员,用于检查字符串是否以指定的后缀结尾。这在许多字符串处理和文本处理的情况下非常实用。