in reply to How to read from a .txt

write some code to do it with help from perlintro

Replies are listed 'Best First'.
Re^2: How to read from a .txt
by stamp1982 (Novice) on Jun 30, 2013 at 22:24 UTC

    If I started with some thing like this how will I join it to my code to work or make sense.

    # Open a .txt file open(seq1, "<seq1.txt") or die $!; #Assign open files to arrays my @seq1 = <seq1>; print "@seq1";
      Didn't try your code, but the syntax for open is usually this:
      open(my $fh, "<", "input.txt") or die "cannot open < input.txt: $!";

        Here's how to read records (lines) from a plain text file in the ASCII character encoding:

        use strict; use warnings; use autodie qw( open close ); use English qw( -no_match_vars ); @ARGV == 1 or die "Usage: perl $PROGRAM_NAME <input file>\n"; my $input_file = shift; open my $fh, '<:encoding(ASCII)', $input_file; RECORD: while (my $record = <$fh>) { # Do something with record... } close $fh;
Re^2: How to read from a .txt
by stamp1982 (Novice) on Jun 30, 2013 at 22:10 UTC
    I did go through it as advised. will the updated code work and if not why?