2009-09-16 99 views

回答

2
Regex re = new Regex(@"[A-Za-z0-9_\-\.][email protected]([A-Za-z0-9\-]+\.)+([A-Za-z\-])+"); 
MatchCollection matches = re.Matches(Text); 
foreach (Match s in matches) 
{//do whatever with s.Value} 
+0

谢谢klerk, 它适合我.. – 2009-09-16 08:07:12

相关问题