• Hey Guest. Check out your NeoGAF Wrapped 2025 results here!

How do I add numerics to a text file?

Status
Not open for further replies.

Agent Icebeezy

Welcome beautful toddler, Madison Elizabeth, to the horde!
I have lists of things on notepad and wordpad. I'd like to see how many items are listed in each file. Is there a way to add a numerical value to them? Any help is appreciated
 
In wordpad, highlight the list and press ctrl + shift + L. the first time you press the combo you'll get bullets, press ctrl + shift + L again and you should get numbers. keep pressing the combo if you want roman numerals or an alphabetical list.

In textpad, I dunno. I think you're screwed there. try copying to wordpad, do the key combo, and paste back to textpad.
 
kernel said:
In wordpad, highlight the list and press ctrl + shift + L. the first time you press the combo you'll get bullets, press ctrl + shift + L again and you should get numbers. keep pressing the combo if you want roman numerals or an alphabetical list.

In textpad, I dunno. I think you're screwed there. try copying to wordpad, do the key combo, and paste back to textpad.

FUCK YEAH, THANKS!!!!
 
Ok, it only goes to 255, why is this on some NES Zelda rupee shit limit. Any way to expand that?
 
Agent Icebeezy said:
Ok, it only goes to 255, why is this on some NES Zelda rupee shit limit. Any way to expand that?

If there's a limit of 255 that means wordpad itself has only allocated the list value string in the file 8 bytes (0 being a value for a total of 256, if my rudimentary knowledge of programming is right), so that is either a restriction in the program itself, the filetype, or both, so you're probably screwed.
 
If you were running Linux or had Cygwin installed, I'd say just use 'wc'.

But you probably don't have either (I'd recommend installing Cygwin anyway), so I googled 'wc for windows' and found this:

http://www.softwareonline.org/winxs42.html

But that's annoying shareware. Cygwin is free and better:

http://www.cygwin.com

Once you install it, just type:

wc < [filename]

It'll tell you the # of characters, # of words, and # of lines.

Of course, you could also install a real text editor like Emacs and then you'll have all sorts of options.
 
Status
Not open for further replies.
Top Bottom