1. 程式人生 > >查詢程式碼檔案中的非 ASCII 字元

查詢程式碼檔案中的非 ASCII 字元

Visual Studio 中編譯程式碼,報如下錯誤:

warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss

表明有非 ASCII 字元存在於檔案中。通過如下正則表示式,可以找到該非 ASCII 字元:

[^\x00-\x7f]

經測試,該方法也適用於 Notepad++Vim

參考: