Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 2301 - 2310 of 2,621 for host:perldoc.perl.org (0.04 sec)

  1. perl583delta.txt

    =head1 NAME perl583delta - what is new for perl v5.8.3 =head1 DESCRIPTION This document describes differences between the 5.8.2 release and the 5.8.3 release. If you are upgrading from an earlier r...
    perldoc.perl.org/perl583delta.txt
    Registered: Fri Apr 18 09:11:54 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. warn.txt

    =over =item warn LIST X<warn> X<warning> X<STDERR> Emits a warning, usually by printing it to C<STDERR>. C<warn> interprets its operand LIST in the same way as C<die>, but is slightly different in ...
    perldoc.perl.org/functions/warn.txt
    Registered: Fri Apr 18 11:38:46 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. chomp.txt

    =over =item chomp VARIABLE X<chomp> X<INPUT_RECORD_SEPARATOR> X<$/> X<newline> X<eol> =item chomp( LIST ) =item chomp This safer version of L<C<chop>|/chop VARIABLE> removes any trailing string tha...
    perldoc.perl.org/functions/chomp.txt
    Registered: Fri Apr 18 12:42:54 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. printf.txt

    =over =item printf FILEHANDLE FORMAT, LIST X<printf> =item printf FILEHANDLE =item printf FORMAT, LIST =item printf Equivalent to C<print FILEHANDLE sprintf(FORMAT, LIST)>, except that L<C<$\>|perl...
    perldoc.perl.org/functions/printf.txt
    Registered: Fri Apr 18 13:36:28 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. tell.txt

    =over =item tell FILEHANDLE X<tell> =item tell Returns the current position I<in bytes> for FILEHANDLE, or -1 on error. FILEHANDLE may be an expression whose value gives the name of the actual file...
    perldoc.perl.org/functions/tell.txt
    Registered: Fri Apr 18 13:05:33 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  6. uc.txt

    =over =item uc EXPR X<uc> X<uppercase> X<toupper> =item uc Returns an uppercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = uc("Perl is GREAT"); # "PERL IS GREAT" This...
    perldoc.perl.org/functions/uc.txt
    Registered: Fri Apr 18 12:29:48 UTC 2025
    - 599 bytes
    - Viewed (0)
  7. pack.txt

    =over =item pack TEMPLATE,LIST X<pack> Takes a LIST of values and converts it into a string using the rules given by the TEMPLATE. The resulting string is the concatenation of the converted values....
    perldoc.perl.org/functions/pack.txt
    Registered: Fri Apr 18 16:55:23 UTC 2025
    - 26K bytes
    - Viewed (0)
  8. split.txt

    =over =item split /PATTERN/,EXPR,LIMIT X<split> =item split /PATTERN/,EXPR =item split /PATTERN/ =item split Splits the string EXPR into a list of strings and returns the list in list context, or t...
    perldoc.perl.org/functions/split.txt
    Registered: Fri Apr 18 16:44:29 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  9. lc.txt

    =over =item lc EXPR X<lc> X<lowercase> =item lc Returns a lowercased version of EXPR. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. my $str = lc("Perl is GREAT"); # "perl is great" What gets return...
    perldoc.perl.org/functions/lc.txt
    Registered: Fri Apr 18 17:43:37 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  10. continue.txt

    =over =item continue BLOCK X<continue> =item continue When followed by a BLOCK, L<C<continue>|/continue BLOCK> is actually a flow control statement rather than a function. If there is a L<C<continu...
    perldoc.perl.org/functions/continue.txt
    Registered: Fri Apr 18 17:24:46 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top