HotKey: Shift+Ctrl+F
Correct result: Error results,
you can find the results just show as '<binary>'
.I've searched this problem in google,but get nothing,
Here is log text. Thanks for anyone give suggestion
HotKey: Shift+Ctrl+F
Correct result: Error results,
you can find the results just show as '<binary>'
.I've searched this problem in google,but get nothing,
Here is log text. Thanks for anyone give suggestion
The file most likely contains non UTF-8 encoded characters, binary characters or the content encoding cannot be guessed. Thus, it is not reliable to show search result summary.
From Sublimetext Forum
In general, if a file contains any ASCII characters < 32, except 0x3, 0x9, 0xa, 0xc or 0xd, then it’s considered binary
Reading that I searched [\x00-\x09] and found a \x02 Then deleted that character; Problem disappeared
Next step would have been [\x0B-\x1F] as x0A is newline But I did not need it
u can use regexp [^[:print:]\t\r\n]
to replace all text, then u can find your result without binary.
© 2022 - 2024 — McMap. All rights reserved.