how to convert \x1 \x2 \x3 … characters to normal characters without erasing in c++

旧时模样 提交于 2019-12-21 05:22:13

问题


Hi guys sorry for the noob question what are those \x1 ..\x2 ..\x3 characters and how to convert these to normal characters?


回答1:


They are characters with the ordinal values 1, 2, and 3. They are called control characters and are not printable, which is why the debugger is showing you their escaped representation.

You can look the control characters up in an ASCII table.



来源:https://stackoverflow.com/questions/17941513/how-to-convert-x1-x2-x3-characters-to-normal-characters-without-erasing-i

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!