Help for this page

Select Code to Download


  1. or download this
    my($first, $second, $third) = $text =~ /(\([a-z]*\))(?:\s|_|$)/gi;
    print "$first and $second and $third\n";
    
  2. or download this
    no warnings 'uninitialized';
    my $count = $text =~ s/(\([a-z]*\))(?:\s|_|$)/$1$2/gi;
    print $count;
    use warnings;
    
  3. or download this
    (network) and (test) and (ifcfg)
    3