Help for this page

Select Code to Download


  1. or download this
    Managed Node XYZ123 = MN
    Type = Combo
    Rim = Planner
    
  2. 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);
    }
    
  3. or download this
    if ($line =~ /^(\w*)\s*=\s*(\w*)/);
    
  4. or download this
    if ($line =~ /%(.*)\s*=\s*(.*)/);