Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test ใƒ†ใ‚นใƒˆ

Results 1 - 10 of 790 for label:perl (0.02 sec)

  1. ${^SAFE_LOCALES}.txt

    =over =item ${^SAFE_LOCALES} X<${^SAFE_LOCALES}> Reflects if safe locale operations are available to this perl (when the value is 1) or not (the value is 0). This variable is always 1 if the perl h...
    perldoc.perl.org/variables/${^SAFE_LOCALES}.txt
    Registered: Fri May 10 21:05:14 UTC 2024
    - 572 bytes
    - Viewed (0)
  2. ${^POSTMATCH}.txt

    =over =item ${^POSTMATCH} X<${^POSTMATCH}> It is only guaranteed to return a defined value when the pattern was compiled or executed with the C</p> modifier. This is similar to C<$'> (C<$POSTMATCH>...
    perldoc.perl.org/variables/${^POSTMATCH}.txt
    Registered: Fri May 10 16:41:58 UTC 2024
    - 510 bytes
    - Viewed (0)
  3. $^D.txt

    =over =item $DEBUGGING =item $^D X<$^D> X<$DEBUGGING> The current value of the debugging flags. May be read or set. Like its L<command-line equivalent|perlrun/B<-D>I<letters>>, you can use numeric ...
    perldoc.perl.org/variables/$^D.txt
    Registered: Fri May 10 17:33:18 UTC 2024
    - 437 bytes
    - Viewed (0)
  4. $*.txt

    =over =item $* X<$*> C<$*> was a variable that you could use to enable multiline matching. After a deprecation cycle, its magic was removed in Perl v5.10.0. Using it now triggers a warning: C<$* is...
    perldoc.perl.org/variables/$*.txt
    Registered: Fri May 10 21:45:18 UTC 2024
    - 338 bytes
    - Viewed (0)
  5. $^W.txt

    =over =item $WARNING =item $^W X<$^W> X<$WARNING> The current value of the warning switch, initially true if B<-w> was used, false otherwise, but directly modifiable. See also L<warnings>. Mnemonic...
    perldoc.perl.org/variables/$^W.txt
    Registered: Fri May 10 16:49:42 UTC 2024
    - 239 bytes
    - Viewed (0)
  6. srand.txt

    =over =item srand EXPR X<srand> X<seed> X<randseed> =item srand Sets and returns the random number seed for the L<C<rand>|/rand EXPR> operator. The point of the function is to "seed" the L<C<rand>|...
    perldoc.perl.org/functions/srand.txt
    Registered: Sat May 11 06:33:51 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. splice.txt

    =over =item splice ARRAY,OFFSET,LENGTH,LIST X<splice> =item splice ARRAY,OFFSET,LENGTH =item splice ARRAY,OFFSET =item splice ARRAY Removes the elements designated by OFFSET and LENGTH from an arra...
    perldoc.perl.org/functions/splice.txt
    Registered: Sat May 11 08:10:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. shift.txt

    =over =item shift ARRAY X<shift> =item shift Removes and returns the B<first> element of an array. This shortens the array by one and moves everything down. my @arr = ('cat', 'dog'); my $item = shi...
    perldoc.perl.org/functions/shift.txt
    Registered: Sat May 11 10:40:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. atan2.txt

    =over =item atan2 Y,X X<atan2> X<arctangent> X<tan> X<tangent> Returns the arctangent of Y/X in the range -PI to PI. For the tangent operation, you may use the L<C<Math::Trig::tan>|Math::Trig/B<tan...
    perldoc.perl.org/functions/atan2.txt
    Registered: Sat May 11 09:56:59 UTC 2024
    - 449 bytes
    - Viewed (0)
  10. lcfirst.txt

    =over =item lcfirst EXPR X<lcfirst> X<lowercase> =item lcfirst Returns the value of EXPR with the first character lowercased. This is the internal function implementing the C<\l> escape in double-q...
    perldoc.perl.org/functions/lcfirst.txt
    Registered: Sat May 11 06:55:16 UTC 2024
    - 376 bytes
    - Viewed (0)
Back to top