我需要查找文本小寫或大寫(使用正則表達式) 我的代碼:查找文本小寫或大寫
static void Main(string[] args)
{
String s = "String : hello Hello HELLO hEllo ";
String patern = @"(hello)";
Regex myRegex = new Regex(patern);
foreach (Match regex in myRegex.Matches(s)) {
Console.WriteLine(regex.Value.ToString());
}
}
這導致:
hello
我需要導致
hello
Hello
HELLO
hEllo
你能幫我嗎?
通常這是用改性劑,'i'完成:
或創建你的正則表達式對象時使用
RegexOptions.IgnoreCase
選項。 '「/你好/我」' – DevZer0它沒有結果。我不知道 –
希望這可能工作 http://stackoverflow.com/questions/6195270/what-is-the-fastest-way-to-check-whether-string-has-uppercase-letter- in-c – faraaz