Help for this page
$_= ~/^\w+\s*=\s*\w+\s*\,\?\w+/ ;
/^ # anchored to the beginning of the string \w+ # one or more word characters (a word) ... \? # a question mark \w+ # one or more word characters (a word) /x;