Help for this page
Select Code to Download
Select
or
download this
use locale;
Select
or
download this
setlocale(LC_CTYPE, "pl");
Select
or
download this
use locale; $a="Pérl"; $b = uc($a); print $b;
Select
or
download this
for ($x = 0;$x < 255;$x++){ $_ = chr($x); if (/\w/){ print "$_ ";} }