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 examples below:

"**************"

Header Info

"***************"

"--------------------"

Infomation Here

"--------------------"

link|improve this question

are you asking about code or simply a format? – Knvn Aug 4 '11 at 15:19
I am asking for ideas, be code or a format. I was curious if anyone had any ideas on how to make a basic text file with a lot of data look better and easier to navigate. By using different ASCII characters, or other things? I tried to provided an example using *, and -. – buzzzzjay Aug 4 '11 at 16:42
What do you mean you can use bold and italic? Notepad and .txt only support plain text. – Brian Gordon Aug 4 '11 at 17:04
@Brian I forgot the not, it was suppose to be cannot. Thanks! – buzzzzjay Aug 4 '11 at 20:30
feedback

closed as not a real question by dtb, rsbarro, msarchet, stakx, Brad Larson Aug 4 '11 at 22:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 2 down vote accepted

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.

link|improve this answer
Great Idea, looking at the game faqs have a lot of different styles. I wasn't have much luck finding anything like that. – buzzzzjay Aug 4 '11 at 22:08
feedback

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.

link|improve this answer
Great example! Thanks! – buzzzzjay Aug 4 '11 at 22:08
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.