安裝 Whistle Posted on 2023-01-20 Edited on 2025-05-20 In Tool Word count in article: 52 Reading time ≈ 1 mins. 使用 Node 安裝 Whistle 1npm i -g whistle Read more »
如何使用 Regex 群組 Posted on 2022-05-22 Edited on 2025-05-20 In Javascript Word count in article: 58 Reading time ≈ 1 mins. 使用 Regex 群組 群組方法用法如下 Read more »
依字元內碼轉換 Big5 與 Unicode Posted on 2022-05-22 Edited on 2025-05-20 In .Net Word count in article: 213 Reading time ≈ 1 mins. 轉換 Big5 字元 Big5 依傳入內碼轉成字元 1234567891011121314151617// 建立兩位元陣列byte[] big5Bytes = new byte[2];// big5 數字 0 內碼為 A2AFstring big5Code = "A2AF";// 內碼前兩字轉為16進制big5Bytes[0] = (byte)Convert.ToInt32(big5Code.Substring(0, 2), 16);// 內碼後兩字轉為16進制big5Bytes[1] = (byte)Convert.ToInt32(big5Code.Substring(2, 2), 16);// 建立 big5 編碼Encoding big5 = Encoding.GetEncoding(950);// 轉成字串string result = big5.GetString(big5Bytes); Read more »
如何運行 Shell 命令 Posted on 2022-05-22 Edited on 2025-05-20 In .Net Word count in article: 92 Reading time ≈ 1 mins. 運行 Shell 命令 透過 Process 執行命令 Read more »
如何在商業邏輯層進行單元測試 Posted on 2022-05-01 Edited on 2025-05-20 In .Net Word count in article: 222 Reading time ≈ 1 mins. 安裝 NSubstitute 安裝 Nuget 的 NSubstitute 套件 1Install-Package NSubstitute Read more »