|
- operators - What does =~ do in Perl? - Stack Overflow
51 I guess the tag is a variable, and it is checking for 9eaf - but does this exist in Perl? What is the "=~" sign doing here and what are the " " characters before and after 9eaf doing?
- What is the meaning of @_ in Perl? - Stack Overflow
128 perldoc perlvar is the first place to check for any special-named Perl variable info Quoting: @_: Within a subroutine the array @_ contains the parameters passed to that subroutine More details can be found in perldoc perlsub (Perl subroutines) linked from the perlvar: Any arguments passed in show up in the array @_
- operators - What is the difference between || and or in Perl . . .
53 From Perl documentation: OR List operators On the right side of a list operator, it has very low precedence, such that it controls all comma-separated expressions found there
- Whats the use of lt; gt; in Perl? - Stack Overflow
What's the use of <> in Perl How to use it ? If we simply write <>; and while (<>) what is that the program doing in both cases?
- Perl flags -pe, -pi, -p, -w, -d, -i, -t? - Stack Overflow
Below are the flags that I encounter most often, and I don't have a clue what they mean: perl -pe perl -pi perl -p perl -w perl -d perl -i perl -t I will be very grateful if you tell me what each of those mean and some use cases for them, or at least tell me a way of finding out their meaning
- How does double arrow (= gt;) operator work in Perl? - Stack Overflow
The => operator in perl is basically the same as comma The only difference is that if there's an unquoted word on the left, it's treated like a quoted word So you could have written Martin => 28 which would be the same as 'Martin', 28 You can make a hash from any even-length list, which is all you're doing in your example Your Readonly example is taking advantage of Perl's flexibility with
- How can I parse command-line arguments in a Perl program?
I'm working on a Perl script How can I parse command line parameters given to it? Example: script pl "string1" "string2"
- operators - What does =~ mean in Perl? - Stack Overflow
25 =~ is the Perl binding operator It's generally used to apply a regular expression to a string; for instance, to test if a string matches a pattern:
|
|
|