Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

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

by CountZero (Bishop)
on Aug 25, 2010 at 15:58 UTC ( [id://857234]=note: print w/replies, xml ) Need Help??


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

$_ 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://857234]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found