Summary: Hello guys. I am having trouble with my script. I need to get all lines lines to show from a text file. What I have is a chat script, that you can cha...
Summary: Hi, Is it possible to delete x number of lines from a CSV file using a batch file ? What I have is 2 CSV files with a Log of temperatures from an AirC...
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 deli...
Summary: Hi there... I need some help guys what i am after is preferably a batch file which would extract two different values from the same line within a txt ...
Summary: I'm trying to figure out a way to ping a list of computer names from a txt file and then output the IP address to a text file using a Batch file. Can...
Summary: I'm trying to write a vb script for windows xp that will read a list of clsids from a text file then build a vbscript to build a batch file based on t...
Summary: I'm trying to read single lines from a text file and store each line in a variable so that I can use that variable to do something (such as COPY, RENA...
Summary: ---Sci-Guy--- "I usually prefer just to be pointed in the right direction so I can try to figure it out myself. I'm just trying to learn VB and find i...
Summary: Hi I want to make a batch file that creates variables by parsing a .txt file made from a "dir /b /n > dirlist.txt" command. Each line in the .txt file...
Summary: hi evryone- i need to wirte a batch script that read the first line from a txt file (try.txt) and than take the first word from this line'and finelly ...
Summary: hello ive been stuck with this bit of code, where it must read keywords from an array, and search them from a .txt file. foreach $kw(@keywords) { $num...
Summary: 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 tex...
Summary: Hi all, well im searching for a script that searches lines in a txt file that end with a $ and echos them to another txt file, any help will be greatl...
Summary: I have a txt file with 18 million CSV records I need to select 20,000 random numbers from it. Can anyone help me how to do this? MS Excel allows onl...
Summary: Hi, I need to exstract part of a line from a ini file and use it later on. Within the ini file i need to find: Keyfile: P:\notes\notes.id but all i ne...
Summary: I have a batch script that can remove the top 6 lines of a txt file. @echo off setLocal EnableDelayedExpansion for /f "skip=6" %%A in (c:\batch\1.txt...
Summary: I have an sql which prompts user to enter datefrom and dateto. I then spool the result in a txt file, add a header then spool to a .csv file. However,...
Summary: Post several lines of the txt file and the table. ===================================== If at first you don't succeed, you're about average. M2...
Summary: I have been programming Perl for my website for the past few days now, and what I need to know is if it is possible to read specific lines from a .txt...
Summary: Here's an overview of what I'm trying to do: We have a number of employees that are running Office XP, Office 2003, Office 2007, plus Visio and Projec...
Summary: Hello Anna, this is one way in which you can read a file but not line by line. private sub command_click() Dim fso,f Const ForReading = 1 Set fso = Cr...
Summary: Hi Anyone who knows how to make an easy bat-file for reading a single line number from a txt-file, then add 1 to this number and write it back to the ...
Summary: What would be the best way to read lines from a text file in java? The user gives me a text file which is already in a given format (i know how many l...