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


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


C# StartsWith() 方法用于检查此字符串实例的开头是否与指定的字符串匹配。

签名

public bool StartsWith(String str)
public bool StartsWith(String, Boolean, CultureInfo) 
public bool StartsWith(String, StringComparison)

参数

str:它是字符串类型参数,用于检查字符串的开头。

返回

它返回布尔值。

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

using System; 
    		
    public class StringExample  
    {  
        public static void Main(string[] args)  
        {  
           string s1 = "Hello C Sharp";
           bool b1 = s1.StartsWith("h");
           bool b2 = s1.StartsWith("H");
           Console.WriteLine(b1);
           Console.WriteLine(b2);
        }  
    }

输出:

False 
True 




相关用法


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