C 檔案操作 提取 處理檔案中資料

2021-08-01 22:14:15 字數 807 閱讀 1432

在a.txt  檔案中格式為  名字|工資

將 工資提取出來,進行*4操作;再放到檔案中。

string strlines = file.readalllines(@"d:\viang\desktop\a.txt", encoding.default); //讀取檔案的每一行        

for (int i = 0; i < strlines.length;i++ )

,stringsplitoptions .removeemptyentries );

int sal=2*int.parse (newstr[1]);//將數字的字串的形式表示成32位的等效有符號數字

// int sal = convert.toint32(newstr[1]);

string ss = (2 * sal).tostring();

strlines[i] = newstr[0] + ss;

}file.writealllines(@"d:\viang\desktop\a.txt",strlines); // 處理後再寫入檔案中

foreach (var item in strlines)

console.readkey();

檔案中a.txt   處理前

處理後      

C 中處理 檔案

c 中處理 檔案 by xielp 發表於 2006 3 12 19 47 00 寫unmanaged code在.net時代成為一種很悲慘的事,當你需要處理xml檔案時,這種感覺會變得尤其強烈。fcl中的system.xml多簡單啊,連steve ballmer都知道怎麼用。事情不會總是那麼理想的...

C 檔案的操作處理

順序檔案 乙個有限字元構成的順序字元流 檔案流類 用於檔案操作 使用用 建立檔案的基本流程 讀寫檔案 關閉檔案 include ofstream outfile clients.dat ios out ios binary ofstream時fstream中定義的類 outfile時自定義的ofst...

資料集檔案提取

tf.gfile.fastgfile path rb read 讀取結果是最原始的影象,沒有經過解碼。如果要顯示讀入的影象,則需要解碼,tf.image.decode jepg和tf.image.decode png分別用於解碼jpg格式和png格式的影象,得到影象的畫素值,這個畫素值可以用於顯示影...