Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Extract Lines from a Text File
Name: thomk Date: January 3, 2006 at 06:40:24 Pacific OS: Win2000 CPU/Ram: P4 1.7 2GB RAM
Comment:
Very simple:
I'm trying to extract particular lines from a small text file.
Ideally using the Windows command line to take lines 1 and 10 from one text file and output them to another text file.
Summary: I am trying to delete blank lines from a text file when executing my batch file. I used the code found on this site @Echo off For /F "tokens=1 delims=" %%A in (c:\orig.txt) Do Echo %%A >> c:\new.tx...
Summary: I have a text file containing 10000 lines. I have a table which shows which lines need to be copied to which file. the text length is approx 600 characters and also has special characters Please help ...
Summary: Hi, I need make a batch file that would search for the line "(0 rows affected)" from a text file, if this line is found it should exit the script, else it should carry on with the rest of the script. ...