Função Perl ucfirst

Descrição

Esta função retorna o valor de EXPR com apenas o primeiro caractere em maiúsculas. Se EXPR for omitido, usará $ _.

Sintaxe

A seguir está a sintaxe simples para esta função -

ucfirst EXPR

ucfirst

Valor de retorno

Esta função retorna String com o primeiro caractere em maiúsculas.

Exemplo

A seguir está o código de exemplo que mostra seu uso básico -

#!/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";

Quando o código acima é executado, ele produz o seguinte resultado -

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