Fonction ucfirst Perl

La description

Cette fonction renvoie la valeur de EXPR avec uniquement le premier caractère en majuscule. Si EXPR est omis, utilise alors $ _.

Syntaxe

Voici la syntaxe simple de cette fonction -

ucfirst EXPR

ucfirst

Valeur de retour

Cette fonction renvoie String avec le premier caractère en majuscule.

Exemple

Voici l'exemple de code montrant son utilisation de base -

#!/usr/bin/perl -w

$string = 'the cat sat on the mat.';
$u_string = ucfirst($string);

print "First String |$string|\n";
print "Second String |$u_string|\n";

Lorsque le code ci-dessus est exécuté, il produit le résultat suivant -

First String |the cat sat on the mat.|
Second String |The cat sat on the mat.|