8 Einträge, 1 Seite |
perl5.8.6 -e 'for (32 .. 126, 160 .. 255) { $ch = chr $_; $isalpha = ($ch =~ /\p{Alpha}/); print "$_ ($ch): $isalpha\n" }'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
phaylon@gaia:~> perldoc perlreref | wc -l
300
phaylon@gaia:~> perl --version
This is perl, v5.8.4 built for i386-linux-thread-multi
Copyright 1987-2004, Larry Wall
Perl may be copied only under the terms of either the Artistic License or the
GNU General Public License, which may be found in the Perl 5 source kit.
Complete documentation for Perl, including FAQ lists, should be found on
this system using `man perl' or `perldoc perl'. If you have access to the
Internet, point your browser at http://www.perl.com/, the Perl Home Page.
phaylon@gaia:~>
perl5.8.6 -e 'for (32 .. 126, 160 .. 255) { $ch = chr $_; $isalpha = ($ch =~ /\p{Alpha}/); print "$_ ($ch): $isalpha\n" }'
require 5.008;
8 Einträge, 1 Seite |