http://www.perlmonks.org?node_id=842643


in reply to How to find barewords in perl code?

And if it wasn't for perlcritic, I'd think that /(?:open(?:dir)?|print|close|flock|readdir)\s+[A-Za-z] would find most of them, with little false positives. (Of course, one can easily construct false positives and false negatives).

Replies are listed 'Best First'.
Re^2: How to find barewords in perl code?
by moritz (Cardinal) on Jun 01, 2010 at 16:12 UTC
    I'd add a (?![,(]) to the end of that regex to exclude print functioncall() and print functionall, otherstuff.

    Now let the bikeshedding and micro-optimizations begin!

      Hmmm, forgot about function calls like that. For some reason, I assumed perl would warn. But even this is warning free:
      sub foo {shift} sub bar {1} print foo bar;
      and just prints 1.

      OTOH, in pre-5.6 days, when I was still using bare word file handles, I used all uppercase names, and I use all lowercase for subs, so /(?:print|...)\s+[A-Z]/ would have worked for my code.