C# startswith与endswith

startswith():判断字段由什么开始的。
endswith():判断字段由什么结束的。

var replace = "!hello,welcome to New York city!";
            Console.WriteLine(replace);
            if (replace.StartsWith("!"))
            {
                var a1 = replace.Substring(1);
                Console.WriteLine(a1);
            }
            if (replace.EndsWith("!"))
            {
                var a2 = replace.Substring(0, replace.Length - 1);
                Console.WriteLine(a2);
            }

结果如下:
在这里插入图片描述

你可能感兴趣的:(ASP.NET,C#)