Help for this page
my( $foundWord ) = $string =~ /(need)/;
my $foundWord = $string =~ /need/ ? 'need ' : undef;