C#读取文件中的浮点数据

2021-01-03 00:29

阅读:446

标签:pre   debug   err   pen   浮点   arp   result   toe   out   

string path = "test.txt";
FileStream fs = new FileStream(path, FileMode.Open);
StreamReader sr = new StreamReader(fs);

char[] separator = new char[] { ‘ ‘, ‘,‘, ‘\t‘, ‘\r‘, ‘\n‘ };
string txt = sr.ReadToEnd().Trim().Replace("\r\n\r\n", "\r\n");
string[] lines = txt.Split(separator);

List result = new List(1024);
string[] nums;
float tmp;

for (int i = 0; i

  

C#读取文件中的浮点数据

标签:pre   debug   err   pen   浮点   arp   result   toe   out   

原文地址:https://www.cnblogs.com/yl-xy/p/13215542.html


评论


亲,登录后才可以留言!