string strSplited = string.Empty;
string[] arrSource = strA.Split(' ');
string[] arrDest= new string[arrSource .Length - 3];
Array.Copy(arrSource , arrDest, arrSource .Length - 3);
strSplited = string.Join("", arrDest);
string[] arrSource = strA.Split(' ');
string[] arrDest= new string[arrSource .Length - 3];
Array.Copy(arrSource , arrDest, arrSource .Length - 3);
strSplited = string.Join("", arrDest);