- or download this
Managed Node XYZ123 = MN
Type = Combo
Rim = Planner
- or download this
my $options = 'A|B|C|D';
if ($line =~ /^Managed Node ([a-zA-Z0-9_-])\s*=\s*($options)/i) {
my ($node, $value) = ($1, $2);
}
- or download this
if ($line =~ /^(\w*)\s*=\s*(\w*)/);
- or download this
if ($line =~ /%(.*)\s*=\s*(.*)/);