Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Is there a better way to use the line number in a quoted string than __LINE__?

by LanX (Saint)
on Mar 07, 2021 at 08:48 UTC ( [id://11129251]=note: print w/replies, xml ) Need Help??


in reply to Is there a better way to use the line number in a quoted string than __LINE__?

Are you trying to reinvent warn ?

>    #print "Line [ @{[__LINE__}] is a syntax error\n";

Because you are closing the parens in the wrong order.

Otherwise it works.

> Is there a better way to include the __LINE__ information without all this fanning-about?

Out of the box, no.

But if you use this very often consider a subroutine which builds the string. Using caller inside that routine would give you the line number.

Otherwise if it really needs to be a variable I'd suggest Tie::Hash to make "$caller{line}" return what you want. Alternatively "$LINE" with Tie::Scalar . °

Similarly for package and file

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery

°) like shown by Haukex++ in the meantime.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-04-25 13:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found