xml 如何在 Notepad++ 中搜索像 DC1 这样的符号
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/9566297/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to search for symbol like DC1 in Notepad++
提问by Abdul Kader
How to search for special ascii characters( like symbol 'DC1') in a file using notepad ++ or any text editors.
如何使用记事本 ++ 或任何文本编辑器在文件中搜索特殊的 ascii 字符(如符号“DC1”)。
回答by Kristofer
Notepad++:
记事本++:
Enable showing all hidden characters. View->Show all characters
启用显示所有隐藏字符。查看->显示所有字符
Or enable hex mode using ctrl-hand look/search for 11
或者使用ctrl-h启用十六进制模式并查找/搜索 11
References:
参考:
https://en.wikipedia.org/wiki/Device_Control_1#Device_Control
https://en.wikipedia.org/wiki/Device_Control_1#Device_Control
回答by Abdul Kader
I found the solution atlast .
我终于找到了解决方案。
The Ascii character equivalent for DC1 symbol is x11,
DC1 符号的等效 Ascii 字符是 x11,
In the extended mode in notepad++ find, giving '\x11' should help you in finding the character.
在 notepad++ find 的扩展模式中,给出 '\x11' 应该可以帮助您找到字符。
For the list of ascii characters and their code, please find the link below
有关 ascii 字符及其代码的列表,请找到以下链接

