Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Help with my regex

by moritz (Cardinal)
on Aug 01, 2013 at 05:38 UTC ( [id://1047355]=note: print w/replies, xml ) Need Help??


in reply to Help with my regex

How about just parsing the whole thing, and afterward using those fields you're interested in, and simply ignore the rest?

use strict; use warnings; use 5.010; my %states; while (<DATA>) { chomp; if (/^ ([^:]+) : \s+ (.*)/x) { $states{$1} = $2; } } use Data::Dumper; print Dumper \%states; __DATA__ Controller Status: Optimal NCQ status: Enabled Status of logical device: Optimal Power State: RPM Supported Power State: RPM, Powered off

Prints

$VAR1 = { 'Supported Power State' => 'RPM, Powered off', 'Power State' => 'RPM', 'NCQ status' => 'Enabled', 'Status of logical device' => 'Optimal', 'Controller Status' => 'Optimal' };

So all the interesting (and some of the uninteresting) data is in %states.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-19 10:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found