Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by kdejan

  1. kdejan

    Help with Perl script to modify file

    Hi all, I'm writing a program to replace A's and G's in a text file I have. This is the code I have: #!usr/bin/perl open(FILE, "whatshappenin") or die $!; #QUICKEST WAY OF READING A LINE BY LINE INTO AN ARRAY foreach $line (<FILE>) { chomp($line); my @array_of_chars = split(//,$line); my...

Part and Inventory Search

Back
Top