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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kdejan
  • Content: Threads
  • Order by date
  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