Help with output file formating and stylying using ascii art? [closed]
I am creating a C# program that is outputting a basic .txt file with a lot of information. I am using formatting to align the information so that it is easier to read, so that is not an issue.
I want to make the output file look nice/fancy so that it is easier to read and each to find sections of data. The text file is a basic notepad file so I cannot use bold or italic to help separate out headers and specif areas of data.
I have tried using the following ascii chars *, -, _ to create line breaks to separate information and it helps make the file look better. I was curious if anyone else has any other useful ways to make the output file look nicer and easier to read. I have tried searching and haven't had much luck. I am sure that some of you have found ways to make an output file look better.
Thanks!
Some ex开发者_JAVA百科amples below:
"**************"
Header Info
"***************"
"--------------------"
Infomation Here
"--------------------"
I've always been a fan of the Em Dash character for lines, if that's all I need. (ALT+0151)
—————————————————————————————————————————
Produces a nice, solid line.
If you're really going to go all out, there are the old border characters.
╔═════════════════╗
║ AMAZING OUTPUT ║
╟─────────────────╢
║ 1) Dog ║
║ 2) Elephant ║
║ 3) Condor ║
║ 4) Liger ║
╟─────────────────╢
║▒▓▒▓▒▓▒▓▒▓▒▓▒▓▒▓▒║
╚═════════════════╝
You can find all of those (in Windows, at least) in charmap.exe. Scroll to the bottom.
I like Shibumi's answer but in case you wanted more examples, go in to the faqs here GameFaqs
Just go pick a game (top games or whatever) and look in the FAQ section. All FAQs at that website are txt files and you might get some good examples of things you can do there.
精彩评论