using System;
public class Program
{
public static void Main()
string x = "tempEmpcodeticsk_dffggg_dfgg.com";
int y = x.IndexOf('_');
string xxx = x.Substring(y+1);
Console.WriteLine("RESULT: {0}", xxx);
}