Whistle 代理規則使用 Posted on 2023-01-20 Edited on 2024-11-09 In Whistle Word count in article: 252 Reading time ≈ 1 mins. 設定 Dns 代理 在 Rules 頁籤加入以下設定,設定 Domain 對應 Ip 位置 1example.com 192.168.0.1 Read more »
安裝 Whistle Posted on 2023-01-20 Edited on 2024-11-09 In Whistle Word count in article: 50 Reading time ≈ 1 mins. 使用 Node 安裝 Whistle 1npm i -g whistle Read more »
如何使用 Regex 群組 Posted on 2022-05-22 Edited on 2024-11-09 In Javascript Word count in article: 58 Reading time ≈ 1 mins. 使用 Regex 群組 群組方法用法如下 12345678// 建立規則var myRegexp = /(?<群組名稱>.*)Test/g;// 執行規則var match = myRegexp.exec('123Test');// 取得執行結果 output: 123console.log(match.groups.群組名稱); Read more »
依字元內碼轉換 Big5 與 Unicode Posted on 2022-05-22 Edited on 2024-11-09 In .Net Word count in article: 203 Reading time ≈ 1 mins. 轉換 Big5 字元 Big5 依傳入內碼轉成字元 12345678910111213// 建立兩位元陣列byte[] codeBytes = new byte[2];// 欲轉換內碼前兩字轉為16進制codeBytes[0] = (byte)Convert.ToInt32("欲轉換內碼".Substring(0, 2), 16);// 欲轉換內碼後兩字轉為16進制codeBytes[1] = (byte)Convert.ToInt32("欲轉換內碼".Substring(2, 2), 16);// 轉成字元Encoding big5 = Encoding.GetEncoding(950);string result = big5.GetString(bytes); Read more »
如何在商業邏輯層進行單元測試 Posted on 2022-05-01 Edited on 2024-11-09 In .Net Word count in article: 222 Reading time ≈ 1 mins. 安裝 NSubstitute 安裝 Nuget 的 NSubstitute 套件 1Install-Package NSubstitute Read more »