About 19,500,000 results
Open links in new tab
  1. What is the meaning of @_ in Perl? - Stack Overflow

    Dec 30, 2010 · 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 …

  2. 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"

  3. How does double arrow (=>) operator work in Perl? - Stack Overflow

    Feb 2, 2016 · 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 …

  4. How do I perform a Perl substitution on a string while keeping the ...

    In Perl, what is a good way to perform a replacement on a string using a regular expression and store the value in a different variable, without changing the original? I usually just copy the …

  5. Perl: Use s/ (replace) and return new string - Stack Overflow

    In Perl, the operator s/ is used to replace parts of a string. Now s/ will alter its parameter (the string) in place. I would however like to replace parts of a string befor printing it, as in pri...

  6. How do you round a floating point number in Perl?

    Output of perldoc -q round Does Perl have a round () function? What about ceil () and floor ()? Trig functions? Remember that int() merely truncates toward 0. For rounding to a certain …

  7. Should I use \\d or [0-9] to match digits in a Perl regex?

    Per perldoc perluniintro, Perl does not support using digits other than [0-9] as numbers, so I would definitely use [0-9] if the following are both true: You want to use the result as a number (such …

  8. perl - Function to trim string leading and trailing whitespace

    Jan 4, 2011 · Is there a built-in function to trim leading and trailing whitespace such that trim(" hello world ") eq "hello world"?

  9. What does exactly perl -pi -e do? - Stack Overflow

    Jan 25, 2015 · Thus perl is looping over the lines in the given files, executes the code with $_ set to the line and prints the resulting $_. The magic variabe $^I is set to an empty string.

  10. How can I print the contents of a hash in Perl? - Stack Overflow

    Jul 21, 2009 · I keep printing my hash as # of buckets / # allocated. How do I print the contents of my hash? Without using a while loop would be most preferable (for example, a one-liner would …