Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: regex multiple lines

by JavaFan (Canon)
on Jan 30, 2012 at 18:49 UTC ( [id://950823]=note: print w/replies, xml ) Need Help??


in reply to regex multiple lines

Untested:
$str = " ... "; # The data you posted my @data; foreach my $line (split /\n\s*/, $str) { if (/^MAC Address:\s*(\S+)/) { push @data, {mac_address => $1} } elsif (/^IP addr:\s*(\S+)/) { $data[-1]{ip_address} = $1; } elsif (/^Link Speed:\s*(\S+)/) { $data[-1]{link_speed} = $1; } elsif (/^Link Cost:\s*(\S+)/) { $data[-1]{link_cost} = $1; } } printf "Node with MAC Address: %s has IP = %s and Link Speed = %s and +Link Cost = %s\n", $_->{mac_address}, $_->{ip_address}, $_->{link_speed}, $_->{li +nk_cost} for @data;

Replies are listed 'Best First'.
Re^2: regex multiple lines
by dlal66 (Acolyte) on Jan 30, 2012 at 19:47 UTC
    Thank you. your "untested" solution worked perfectly :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-25 13:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found