Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: Parsing a line of text

by pvaldes (Chaplain)
on Mar 13, 2013 at 17:14 UTC ( [id://1023263]=note: print w/replies, xml ) Need Help??


in reply to Parsing a line of text

in pseudocode

# we read the /etc/shadow to a filehandle open (my $filehandle, '<', '/etc/shadow') or die $!; while (<$filehandle>){ # we read line by line now chomp; # and split the line by fields my ($name, $passwd, $field3, $field4,... ETC until $field8) = split /: +/ $_; if ($passwd = '*'){do something...} elsif ($passwd = '!'){do other...} } # we close the while loop close $filehandle;

Updated: you don't need to double the !! probably

Updated again: missed a semicolon after die

Log In?
Username:
Password:

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

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

    No recent polls found