Based on my limited understanding
local $/ = undef when used inside an innermost block of the smallest scope possible is acutally perfectly fine. If you just say
$/ = undef in a global scope, then you can run into problems with other IO - usually when some other modules your using are doing IO. This is because $/ is a global variable.
Also be aware that
localising a variable doesn't preserve its value into the localised copy; the localised copy is undefined. As this example crudely demonstrates:
c:\WorkingFolder>perl -e "$/ = 5; print qq{$/\n}; {local $/; print qq
+{$/\n}; $/ = 2; print qq{$/\n};} print $/"
__END__
Output is:
5 #initally set $/ to something we can see when we print it
#2nd print, proves localsised $/ is set to undef
2 #localised copy of $/ set to 2
5 #inner scope where $/ was localised has ended. Original $/ is
+ reinstated by Perl
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.