Perl Programming Question:
Download Questions PDF

When would local $_ in a function ruin your day?

Perl Programming Interview Question
Perl Programming Interview Question

Answer:

When your caller was in the middle for a while(m//g) loop
The /g state on a global variable is not protected by running local on it. That'll teach you to stop using locals. Too bad $_ can't be the target of a my() -- yet.

Download Perl Programming Interview Questions And Answers PDF

Previous QuestionNext Question
How do I read command-line arguments with Perl?What happens to objects lost in "unreachable" memory..... ?