Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^2: Help with regex

by ChuckularOne (Prior)
on Sep 28, 2007 at 16:40 UTC ( [id://641570]=note: print w/replies, xml ) Need Help??


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$/; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://641570]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-19 09:17 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found