in reply to Re: Help with regex
in thread Help with regex

My data must be something other than what I think it is. I'll revisit it. Thanks.

Replies are listed 'Best First'.
Re^3: Help with regex
by gam3 (Curate) on Sep 28, 2007 at 17:28 UTC
    You might try m/^1\s*$/ for your regular expression.
    -- gam3
    A picture is worth a thousand words, but takes 200K.
Re^3: Help with regex
by Not_a_Number (Prior) on Sep 28, 2007 at 16:52 UTC

    How are you populating your @fileData array? Is there any reason not to iterate over the filehandle directly?

    use strict; use warnings; my $infile = 'whatever'; open my $fh, '<', $infile or die "Couldn't open '$infile' for read: $! +\n"; while ( my $line = <$fh> ) { print "$.\n" if $line =~ m/^1$/; }