Tema: Variables Escalares (String)
Pregunta: Como pasar de minúsculas a mayúsculas ?
Respuesta: Es muy fácil de hacer mediante expresines regulares
Código:
#!c:/perl/bin/perl.exe
print "Content-type: text/html\n\n";
$user = 'Texto EN DISTintas forMaS';
$user =~ tr/[a-z]/[A-Z]/;
print "<html><h1>$user</h1></html>\n";
exit;