C# 替換 文字檔案內容
C# 替換 文字檔案內容
Code
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace CS_Console_replaceTxT { class Program { static void Pause() { Console.Write("Press any key to continue . . . "); Console.ReadKey(true); } static void Main(string[] args) { StreamReader sr = new StreamReader(@"C:\123.vbs"); StreamWriter sw = new StreamWriter(@"C:\456.vbs"); while (!sr.EndOfStream)// 每次讀取一行,直到檔尾 { string line = sr.ReadLine();// 讀取文字到 line 變數 line = line.Replace("jashliao", "jash.liao"); sw.WriteLine(line);// 寫入文字 } sw.Close();// 關閉串流 sr.Close();// 關閉串流 Pause(); } } }
One thought on “C# 替換 文字檔案內容”
C# 基本 簡易 檔案 讀取 寫入