我有一個包含以下輸出如何搜索字符串中的模式?
login;windows
db;sql
audit;failure
我如何檢查,如果此字符串包含單詞串「審計;失敗」?
我使用下面的代碼,但沒有成功:
currLine = sr.ReadToEnd();
string[] splited = Regex.Split(currLine, "~~~~~~~~~~~~~~");
case1 = splited[0];
string case1 = "";
string pattern1 = "audit;failure";
if (Regex.IsMatch(case1, pattern1)){
console.writeline("success"!);
}
我必須提前通過可變case1
而不是字符串currLine thaks搜索! :d
你試過[string.Contains](http://msdn.microsoft.com/en-us/library/dy85x1sa.aspx)嗎? – Reniuz