C#如何读取txt数据,数据格式为: 1.22 3.223 3.23 343 3.232 4.23 2.232 233 6.45 3.34 3.34 345

[复制链接]
查看11 | 回复2 | 2012-10-8 10:54:38 | 显示全部楼层 |阅读模式
string s = "1.22 3.223 3.23 343 3.232 4.23 2.232 233 6.45 3.34 3.34 345";
string[] strs = s.Split(' '); // 取得最后一个索引
int index = strs.Length - 1; string result = strs[index];...
回复

使用道具 举报

千问 | 2012-10-8 10:54:38 | 显示全部楼层
//sFilePathName为文本文件的绝对路径public float[] readin(string sFilePathName)
{
double []f = new double [12]; //根据具体数据自己再调整下
try
{
...
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行