Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Help on 16/17/18/19/20 dot pl

by Raymond (Novice)
on Aug 09, 2013 at 20:06 UTC ( [id://1048838]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    use charnames qw(cyrilic greek);
    print "\N{Sigma} and \N{Sigma} are Greek sigmas.\n";
    print "\N{BE} and \N{be} are Cyrilic bes.\n";
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    use charnames qw(cyrilic greek);
    print "\N{Sigma} and \N{Sigma} are Greek sigmas.\n";
    print "\N{BE} and \N{be} are Cyrilic bes.\n";
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    $code = charnames::vianame($name);
    printf "%s is character U+%04X (%s)\n",
        $name, $code, chr($code);
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
    
    
    #pagina 17
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    ...
    #pagina 18
    print "unique chars are: ", sort(keys %seen), "\n";
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://1048838]
Approved by Athanasius
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-25 20:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found