當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。