Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: What does it mean "$_." in PERL

by nvivek (Vicar)
on Aug 25, 2010 at 05:51 UTC ( [id://857080]=note: print w/replies, xml ) Need Help??


in reply to What does it mean "$_." in PERL

$_ is a special variable which contains the value of the last matched expression or the intermediate value in loops such as for, while, etc.,if you don't store that matched expression into explicit variables.

Replies are listed 'Best First'.
Re^2: What does it mean "$_." in PERL
by CountZero (Bishop) on Aug 25, 2010 at 15:58 UTC
    $_ is a special variable which contains the value of the last matched expression
    Interesting, where did you get that?

    Consider and meditate on the following:

    use strict; use warnings; use 5.012; my $string = 'This is a string'; my $match = $string =~ m/string/; say $match; say $_;
    Wich outputs:
    1
    And the following warning:
    Use of uninitialized value $_ in say at C:\Data\strawberry-perl\perl\s +cript-chrome\Perl-1.pl line 9.

    CountZero

    A program should be light and agile, its subroutines connected like a string of pearls. The spirit and intent of the program should be retained throughout. There should be neither too little or too much, neither needless loops nor useless variables, neither lack of structure nor overwhelming rigidity." - The Tao of Programming, 4.1 - Geoffrey James

Log In?
Username:
Password:

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

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

    No recent polls found