Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1231 - 1240 of 1,302 for label:perl (0.03 sec)

  1. fileno.txt

    =over =item fileno FILEHANDLE X<fileno> =item fileno DIRHANDLE Returns the file descriptor for a filehandle or directory handle, or undefined if the filehandle is not open. If there is no real file...
    perldoc.perl.org/functions/fileno.txt
    Registered: Tue Nov 26 22:53:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. join.txt

    =over =item join EXPR,LIST X<join> Joins the separate strings of LIST into a single string with fields separated by the value of EXPR, and returns that new string. Example: my $rec = join(':', $log...
    perldoc.perl.org/functions/join.txt
    Registered: Wed Nov 27 02:09:01 UTC 2024
    - 455 bytes
    - Viewed (0)
  3. ord.txt

    =over =item ord EXPR X<ord> X<encoding> =item ord Returns the code point of the first character of EXPR. If EXPR is an empty string, returns 0. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. (Note I...
    perldoc.perl.org/functions/ord.txt
    Registered: Tue Nov 26 23:57:20 UTC 2024
    - 319 bytes
    - Viewed (0)
  4. perlcommunity.txt

    =head1 NAME perlcommunity - a brief overview of the Perl community =head1 DESCRIPTION This document aims to provide an overview of the vast perl community, which is far too large and diverse to pro...
    perldoc.perl.org/perlcommunity.txt
    Registered: Tue Nov 26 14:10:25 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. 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: Tue Nov 26 17:18:27 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. 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: Tue Nov 26 18:59:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. read.txt

    =over =item read FILEHANDLE,SCALAR,LENGTH,OFFSET X<read> X<file, read> =item read FILEHANDLE,SCALAR,LENGTH Attempts to read LENGTH I<characters> of data into variable SCALAR from the specified FILE...
    perldoc.perl.org/functions/read.txt
    Registered: Tue Nov 26 17:51:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. 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: Tue Nov 26 20:08:20 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. 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: Tue Nov 26 21:13:42 UTC 2024
    - 599 bytes
    - Viewed (0)
  10. sin.txt

    =over =item sin EXPR X<sin> X<sine> X<asin> X<arcsine> =item sin Returns the sine of EXPR (expressed in radians). If EXPR is omitted, returns sine of L<C<$_>|perlvar/$_>. For the inverse sine opera...
    perldoc.perl.org/functions/sin.txt
    Registered: Tue Nov 26 19:25:13 UTC 2024
    - 338 bytes
    - Viewed (0)
Back to top