Hi to all,

First of all, sorry for the late of my answer.
Thank for all your sentence.

Here's my solution (for now) :

for my $w (@keywords)
      {
         if ( /\b$w\b/ and !/\buc($w)\b/ )
         {
            print "Keyword '$w' not uppercase line $.\n";
            ajoute_erreur( 7, $. );
            last;
         }
      }

It's probably less fast than other ones, but it seems to work.


-- 
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to