using System;
using System.Text;
using System.Text.RegularExpressions;

namespace test
{
	class Program
	{
		public static void Main(string[] args)
		{
			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);
		}
	}
}

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-27
  • 2021-12-17
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-26
  • 2022-12-23
  • 2021-12-01
相关资源
相似解决方案