当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# String EndsWith()用法及代码示例


C# EndsWith() 方法用于检查指定的字符串是否与该字符串的末尾匹配。如果在此字符串的末尾找到指定的字符串,则返回 true,否则返回 false。

签名

public bool EndsWith(String str)
public bool EndsWith(String, Boolean, CultureInfo)
public bool EndsWith (String, StringComparison)?

参数

str:它是一个字符串对象,用于检查指定的字符串是否以它结尾。

返回

它返回布尔值 true 或 false。

C# 字符串 EndsWith() 方法示例

using System;  
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
             string s1 = "Hello";  
             string s2 = "llo";
             string s3 = "C#";
             Console.WriteLine(s1.EndsWith(s2));
             Console.WriteLine(s1.EndsWith(s3));
        }  
    }

输出:

True
False 




相关用法


注:本文由纯净天空筛选整理自 C# String EndsWith()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。