描述
此函數返回大寫版本的 EXPR,如果未指定,則返回 $_。檢查 ucfirst() 函數,它將隻返回大寫的第一個字符。
用法
以下是此函數的簡單語法 -
uc EXPR uc
返回值
此函數以大寫形式返回字符串。
示例
以下是顯示其基本用法的示例代碼 -
#!/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.|
相關用法
- Perl uc()用法及代碼示例
- Perl ucfirst用法及代碼示例
- Perl undef用法及代碼示例
- Perl utime用法及代碼示例
- Perl unshift()用法及代碼示例
- Perl use用法及代碼示例
- Perl umask用法及代碼示例
- Perl untie用法及代碼示例
- Perl unpack用法及代碼示例
- Perl unlink用法及代碼示例
- Perl unshift用法及代碼示例
- Perl sin()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl kill用法及代碼示例
- Perl chop()用法及代碼示例
- Perl wantarray用法及代碼示例
- Perl gmtime用法及代碼示例
- Perl exists()用法及代碼示例
- Perl split用法及代碼示例
注:本文由純淨天空篩選整理自 Perl uc Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。