public static string Str4Split(String str)
{
String oper = "";

if (!String.IsNullOrEmpty(str) && str.StartsWith("-"))
{
str = str.Remove(0, 1);
oper = "-";
}

str=System.Text.RegularExpressions.Regex.Replace(str, @"(\d{4})", ",$1", System.Text.RegularExpressions.RegexOptions.RightToLeft).Trim(',');

return oper + str;


}