Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 961 - 970 of 1,301 for label:perl (0.03 sec)

  1. Unicode::Collate::CJK::JISX0208.txt

    package Unicode::Collate::CJK::JISX0208; use 5.006; use strict; use warnings; our $VERSION = '1.31'; my %u2p; my $wt = 0x8000; while (<DATA>) { last if /^__END__/; my @c = split; for my $c (@c) { n...
    perldoc.perl.org/Unicode::Collate::CJK::JISX0208.txt
    Registered: Fri Nov 14 07:04:45 UTC 2025
    - 32K 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: Mon Nov 24 18:48:43 UTC 2025
    - 25.9K 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: Mon Nov 24 17:43:24 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  4. each.txt

    =over =item each HASH X<each> X<hash, iterator> =item each ARRAY X<array, iterator> When called on a hash in list context, returns a 2-element list consisting of the key and value for the next elem...
    perldoc.perl.org/functions/each.txt
    Registered: Mon Nov 24 16:55:11 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. 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: Mon Nov 24 19:36:44 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. 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: Mon Nov 24 16:33:02 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. oct.txt

    =over =item oct EXPR X<oct> X<octal> X<hex> X<hexadecimal> X<binary> X<bin> =item oct Interprets EXPR as an octal string and returns the corresponding value. An octal string consists of octal digit...
    perldoc.perl.org/functions/oct.txt
    Registered: Mon Nov 24 20:52:23 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. 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: Mon Nov 24 17:57:11 UTC 2025
    - 319 bytes
    - Viewed (0)
  9. 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: Mon Nov 24 21:08:12 UTC 2025
    - 338 bytes
    - Viewed (0)
  10. our.txt

    =over =item our VARLIST X<our> X<global> =item our TYPE VARLIST =item our VARLIST : ATTRS =item our TYPE VARLIST : ATTRS C<our> makes a lexical alias to a package (i.e. global) variable of the same...
    perldoc.perl.org/functions/our.txt
    Registered: Tue Nov 25 13:44:12 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top