2009-09-16 2 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, 그것은 나를 위해 일합니다. –

관련 문제