in reply to Simple prog isnt cooperating

Welcome to the Monastery, catfish1116!

Please put your programming code within <code>code here...</code> code tags, per Writeup Formatting Tips.

For the Monks, here it is formatted and within proper tags:

use v5.12; use warnings; my $Namelist = 'Wilma Fred Barney Betty Dino'; if ( $Namelist ~= m/\w+a/) { print "Matched|$<$&>$|\n"; say "The name that matched was $1 \n"; } else { print "No match: \n"; }

Replies are listed 'Best First'.
Re^2: Simple prog isnt cooperating
by catfish1116 (Beadle) on Oct 16, 2018 at 14:59 UTC
    Thank you for your help.

    I'm not proficient in HTML, but promise to do better in future posts

    Catfish