当前位置: 首页 > 文档资料 > Perl 入门教程 >

uc

优质
小牛编辑
125浏览
2023-12-01

描述 (Description)

此函数返回EXPR的大写版本,如果未指定,则返回$ _。 检查ucfirst()函数,它只返回大写的第一个字符。

语法 (Syntax)

以下是此函数的简单语法 -

uc EXPR
uc

返回值 (Return Value)

此函数以大写形式返回String。

例子 (Example)

以下是显示其基本用法的示例代码 -

#!/usr/bin/perl -w
$string = 'the cat sat on the mat.';
$u_string = uc($string);
print "First String |$string|\n";
print "Second String |$u_string|\n";

执行上述代码时,会产生以下结果 -

First String |the cat sat on the mat.|
Second String |THE CAT SAT ON THE MAT.|