Forum Moderators: open

Message Too Old, No Replies

making alphabetical URL lists

         

trader

6:03 pm on Dec 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Anyone known a program to arrange a large list of url's in alphabetical order?

Spent a lot of time 'googling' for it but no success.

tedster

9:41 pm on Dec 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If your list has a standard separator between urls (line break, comma, tab,) you can use MS Word:

Table > Convert > Text to Table
...then
Table > Sort > Aphabetical

You could also make a .csv or .tsv file from the list and sort it in Excel.

Pfui

9:50 pm on Dec 23, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Perhaps the nifty PauldingNet "Sorter"?

[paulding.net...]

Sort options are at the bottom of the input box and include case-sensitive and case-insensitive Alpha, Numeric, plus assorted Reverse variations.

cws3di

10:23 pm on Dec 23, 2005 (gmt 0)

10+ Year Member




if you have a linux box handy, try:

sort filename.txt > filesorted.txt

If you want to do some fancy sorting, it is pretty flexible. You can read the manual on the unix sort command at:

man sort
or
info sort