Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1101 - 1110 of 1,306 for label:perl (0.07 sec)

  1. Fatal.txt

    package Fatal; # ABSTRACT: Replace functions with equivalents which succeed or die use 5.008; # 5.8.x needed for autodie use Carp; use strict; use warnings; use Tie::RefHash; # To cache subroutine ...
    perldoc.perl.org/Fatal.txt
    Registered: Sun Jun 08 23:29:52 UTC 2025
    - 59.2K bytes
    - Viewed (0)
  2. File::Fetch.txt

    package File::Fetch; use strict; use FileHandle; use File::Temp; use File::Copy; use File::Spec; use File::Spec::Unix; use File::Basename qw[dirname]; use Cwd qw[cwd]; use Carp qw[carp]; use IPC::C...
    perldoc.perl.org/File::Fetch.txt
    Registered: Mon Jun 09 02:22:56 UTC 2025
    - 46.2K bytes
    - Viewed (0)
  3. Encode::Guess.txt

    package Encode::Guess; use strict; use warnings; use Encode qw(:fallbacks find_encoding); our $VERSION = do { my @r = ( q$Revision: 2.8 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r }; my $Canon ...
    perldoc.perl.org/Encode::Guess.txt
    Registered: Sun Jun 08 19:24:29 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. Getopt::Std.txt

    package Getopt::Std; use strict; use warnings; require Exporter; =head1 NAME Getopt::Std - Process single-character switches with switch clustering =head1 SYNOPSIS use Getopt::Std; getopts('oif:');...
    perldoc.perl.org/Getopt::Std.txt
    Registered: Sun Jun 08 23:50:32 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. ExtUtils::PL2Bat.txt

    package ExtUtils::PL2Bat; $ExtUtils::PL2Bat::VERSION = '0.005'; use strict; use warnings; use 5.006; use Config; use Carp qw/croak/; # In core, we can't use any other modules except those that alre...
    perldoc.perl.org/ExtUtils::PL2Bat.txt
    Registered: Sun Jun 08 21:05:13 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  6. ExtUtils::Constant::Utils.txt

    package ExtUtils::Constant::Utils; use strict; use vars qw($VERSION @EXPORT_OK @ISA); use Carp; @ISA = 'Exporter'; @EXPORT_OK = qw(C_stringify perl_stringify); $VERSION = '0.04'; use constant is_pe...
    perldoc.perl.org/ExtUtils::Constant::Utils.txt
    Registered: Sun Jun 08 19:56:00 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  7. Encode::CN.txt

    package Encode::CN; BEGIN { if ( ord("A") == 193 ) { die "Encode::CN not supported on EBCDIC\n"; } } use strict; use warnings; use Encode; our $VERSION = do { my @r = ( q$Revision: 2.3 $ =~ /\d+/g ...
    perldoc.perl.org/Encode::CN.txt
    Registered: Sun Jun 08 20:22:52 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. ExtUtils::MM_VOS.txt

    package ExtUtils::MM_VOS; use strict; use warnings; our $VERSION = '7.70'; $VERSION =~ tr/_//d; require ExtUtils::MM_Unix; our @ISA = qw(ExtUtils::MM_Unix); =head1 NAME ExtUtils::MM_VOS - VOS speci...
    perldoc.perl.org/ExtUtils::MM_VOS.txt
    Registered: Sun Jun 08 20:55:29 UTC 2025
    - 762 bytes
    - Viewed (0)
  9. perlre.txt

    =head1 NAME X<regular expression> X<regex> X<regexp> perlre - Perl regular expressions =head1 DESCRIPTION This page describes the syntax of regular expressions in Perl. If you haven't used regular ...
    perldoc.perl.org/perlre.txt
    Registered: Wed Jun 04 20:36:19 UTC 2025
    - 132.6K bytes
    - Viewed (0)
  10. perldata.txt

    =head1 NAME perldata - Perl data types =head1 DESCRIPTION =head2 Variable names X<variable, name> X<variable name> X<data type> X<type> Perl has three built-in data types: scalars, arrays of scalar...
    perldoc.perl.org/perldata.txt
    Registered: Wed Jun 04 19:43:28 UTC 2025
    - 51.9K bytes
    - Viewed (0)
Back to top