string pp = "1063792.4 2764405.825 5.464413E-05 -1.780467E-04";
string[] mm = Regex.Split(pp, "\\s+", RegexOptions.IgnoreCase);
for (int i = 0; i < mm.Length; i++)
{
Console.Write(mm[i] + '\n');
}
// TODO: Implement Functionality Here
Console.Write("Press any key to continue . . . ");
Console.ReadKey(true);
因篇幅问题不能全部显示,请点此查看更多更全内容