What does $1 mean in Perl? Further, what does $2 mean? How many $number variables are there?
feedback
|
|
The For example, take the following string:
After the statement
| |||||
feedback
|
|
The number variables are the matches from the last successful match or substitution operator you applied:
Always test that the match or substitution was successful before using $1 and so on. Otherwise, you might pick up the leftovers from another operation. Perl regular expressions are documented in perlre. | |||||||||||||||
feedback
|
|
$1, $2, etc will contain the value of captures from the last successful match - it's important to check whether the match succeeded before accessing them, i.e.
An example of the problem - $1 contains 'Quick' in both print statements below:
| ||||
|
feedback
|
|
These are called "Match Variables". As previously mentioned they contain the text from your last regular expression match. More information here: http://cslibrary.stanford.edu/108/EssentialPerl.html (CTRL-F for 'Match Variables' to find corresponding section) | |||
|
feedback
|
|
As others have pointed out the $x are capture variables for regular expressions allowing you to reference sections of a matched pattern. Perl also supports named captures which might be easier for humans to remember in some cases. given input: 111 222
$1 is 111 $2 is 222 One could also say:
$+{myvara} is 111 $+{myvarb} is 222 | ||||
|
feedback
|
|
In general questions regarding "magic" variables in Perl can be answered by looking in the Perl predefined variables documentation a la:
However, when you search this documentation for $1 etc. You'll find references in a number of places except the section on these "digit" variables. You have to search for
I would have added this to Brian's answer either by commenting or editing but I don't have enough rep. If someone adds this I'll remove this answer. | |||
|
feedback
|
|
The variables $1 .. $9 are also read only variables so you can't implicitly assign a value to them:
That will return an error: Modification of a read-only value attempted at script line 1. You also can't use numbers for the beginning of variable names:
The above will also return an error. | |||
|
feedback
|
|
I would suspect that there can be as many as | |||
|
feedback
|