There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
 
Tag Cloud
access audio avg avg 8 bios blue screen boot bsod computer connection cpu crash css dell desktop dma driver drivers dvd email error excel explorer firefox firefox 3 freeze gimp graphics hard drive hardware hijackthis hjt install internet internet explorer itunes keyboard laptop macro malware monitor motherboard network networking outlook outlook 2003 outlook 2007 outlook express pio problem problems router seo server slow sound sp3 spyware trojan usb video virtumonde virus vista vundo windows windows vista windows xp winxp wireless
Software Development
Search
Search in:
 
Advanced Search
Tech Support Guy Forums > Software & Hardware > Software Development >
Sorting Text Files


HELLO AND WELCOME! Before you can post your question, you'll have to register -- it's completely free! Click here to join today! We highly recommend that you print a copy of our Guide for New Members. Enjoy!

 
Thread Tools
SenoraRaton's Avatar
Junior Member with 1 posts.
 
Join Date: Aug 2007
09-Aug-2007, 03:41 PM #1
Sorting Text Files
Is there a way to sort a text file alphabetacly, starting after a specified string, in the command prompt?
I have a list of files that appear as:
Title - Author
Title - Author
Title - Author

And I want to sort the file by Author.
I used sort "filename" > storage.txt to sort them alpahbetically by title.

I tried using the Find command, but it only finds the string, in this case " - ", I'm not sure how to get it to sort afterwards though.
Mosaic1's Avatar
Distinguished Member with 7,498 posts.
 
Join Date: Aug 2001
09-Aug-2007, 06:35 PM #2
Let's create a new text file where we reverse the information in each line to create a new file which lists Author - title

Then sort that new file. To do that we parse each line, using the - as a delimiter.

for /f "tokens=1,2 delims=-" %%a in (storage.txt) do echo %%b - %%a >>result.txt

sort result.txt > authors.txt


authors.txt will have the list sorted as Author - Title
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are Off
Refbacks are Off

You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -4. The time now is 12:19 AM.
Copyright © 1996 - 2008 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0
Powered by Cermak Technologies, Inc.