Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    if ($str =~ /^(lease\s\Q$l\E[^\}]+?^\})/m) {
      print "$1\n";
    }
    
  2. or download this
    my $l = '10.2.56.77';
    if ($str =~ /^(lease\s\Q$l\E[^\}]+?^\})/m) {
      print "$1\n";
    }