using System.Text.RegularExpressions;//字符串
string str = "[email protected] alsdjfsaldjfa as [email protected] asdf";
string pattern = @"\[email protected]";
Regex reg = new Regex(pattern, RegexOptions.IgnoreCase | RegexOptions.Multiline);
MatchCollection mc = reg.Matches(str);
string[] result = new string[mc.Count];for (int i = 0; i < mc.Count; i++)
{
    result[i] = mc[i].ToString();
}//----测试
for (int i = 0; i < result.Length; i++)
{
    Response.Write(result[i] + "<br />");
}