Regex is _emp\d{3}@support.
if you program with C#,sample code is :
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex("_emp\d{3}@support\.", System.Text.RegularExpressions.RegexOptions.IgnoreCase);
string inpstr = Console.ReadLine();
if (reg.Match(inpstr).Success)
{
string outstr = reg.Replace(inpstr, "@");
}