確定字串是否以給定序列開頭

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