Help for this page
my $string = 'abcdef'; ... if ($string =~ m/ced/) { $extracted2 = $1; }
my ($extracted) = ($string =~ m/bce/)||('');