Help for this page

Select Code to Download


  1. or download this
    my $string = 'abcdef';
    
    ...
    if ($string =~ m/ced/) {
        $extracted2 = $1;
    }
    
  2. or download this
    my ($extracted) = ($string =~ m/bce/)||('');