Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Re2 (-l): I don't use printf enough

by bart (Canon)
on Oct 23, 2003 at 13:40 UTC ( [id://301581]=note: print w/replies, xml ) Need Help??


in reply to Re2 (-l): I don't use printf enough
in thread I don't use printf enough

I like -l but wish that there was a way to selectively counter-act it, as I occasionally (but not often) want to print a newline-less line. How do you handle these situations?
Localize $\.
$\ = "\n"; # as perl -l print "before"; { local $\; print "continued"; } print "after"; print "heh!";
which prints
before
continuedafter
heh!
In fact, you can set $\ to anything, and with local, it's safe — or at least, as safe as using $\.

IMO, every module that uses print in a hidden fashion, should use

local $\;
and not rely on $\ being empty at the time its functions are called.

Note that printf ignores the settings of $\.

Replies are listed 'Best First'.
Re: Re: Re2 (-l): I don't use printf enough
by demerphq (Chancellor) on Oct 23, 2003 at 17:12 UTC

    every module that uses print in a hidden fashion, should use local $\;

    No way. Anybody who sets $\ should set it in a localized block when they do so. -l is there for one liners not real code. I _refuse_ to try to work around other people setting $\ stupidly. And for that matter simply localizing $\ in the module will not work. You'd have to do it in every single subroutine. And that means that every single subroutine that uses print is going to do an unecessary piece of work just to workaround somebody setting $\ stupidly. In essence I refuse to pay the price for somebody elses foolishness. And I dont see it as being reasonable to expect people to do so. Going down that road means that eventually somebody is going to argue that every single subroutine should localize all the global variables because of similar reasons.

    Blech.


    ---
    demerphq

      First they ignore you, then they laugh at you, then they fight you, then you win.
      -- Gandhi


      Going down that road means that eventually somebody is going to argue that every single subroutine should localize all the global variables because of similar reasons.

      Personally, I think there should be a switch, similar to strict, that will do this for you within a scope. Most modules shouldn't be depending on the globals anyway. It just causes craziness. Is there a use localize_globals; or some such? Ideally, one would add a use line at the top of the module and that would be it. Could this work? (Untested)

      package Filter::LocalizeGlobals; use Filter::Simple; # Add things to be localized here. my $locals = 'local (' . join ',', qw( $_ $\ $/ ); FILTER_ONLY code => sub { s/(\bsub\b\s*\w+{)/$1 $locals /g; }; 1;

      ------
      We are the carpenters and bricklayers of the Information Age.

      The idea is a little like C++ templates, except not quite so brain-meltingly complicated. -- TheDamian, Exegesis 6

      ... strings and arrays will suffice. As they are easily available as native data types in any sane language, ... - blokhead, speaking on evolutionary algorithms

      Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://301581]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (3)
As of 2024-04-24 20:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found