确定字符串是否以给定序列开头

string HelloWorld = "Hello World";
HelloWorld.StartsWith("Hello"); // true
HelloWorld.StartsWith("Foo"); // false

在字符串中查找字符串

使用 System.String.Contains 你可以查明字符串中是否存在特定字符串。该方法返回一个布尔值,如果该字符串存在则返回 true,否则返回 false。

string s = "Hello World";
bool stringExists = s.Contains("ello");  //stringExists =true as the string contains the substring