reveal hidden characters in a file
When parsing a file programmatically, the program will read all the characters including hidden characters such as tabs, new lines and carriage returns but these characters are usually invisible in a file editor by default. Sometimes these invisible characters will cause problems when you are parsing a file with unexpected hidden characters.
In vim or vi editors you can show the hidden characters by this command:
:set list
To hide them again:
:/set nolist
Search within Codexpedia
Custom Search
Search the entire web
Custom Search
Related Posts