Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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: Tue Nov 26 21:13:42 UTC 2024
    - 599 bytes
    - Viewed (0)
  7. 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)
  8. readpipe.txt

    =over =item readpipe EXPR =item readpipe X<readpipe> EXPR is executed as a system command. The collected standard output of the command is returned. In scalar context, it comes back as a single (po...
    perldoc.perl.org/functions/readpipe.txt
    Registered: Wed Nov 27 07:04:35 UTC 2024
    - 622 bytes
    - Viewed (0)
  9. exec.txt

    =over =item exec LIST X<exec> X<execute> =item exec PROGRAM LIST The L<C<exec>|/exec LIST> function executes a system command I<and never returns>; use L<C<system>|/system LIST> instead of L<C<exec...
    perldoc.perl.org/functions/exec.txt
    Registered: Wed Nov 27 09:19:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. fork.txt

    =over =item fork X<fork> X<child> X<parent> Does a L<fork(2)> system call to create a new process running the same program at the same point. It returns the child pid to the parent process, C<0> to...
    perldoc.perl.org/functions/fork.txt
    Registered: Wed Nov 27 09:26:21 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top