Perl中的uc()函數將其轉換為大寫後返回傳遞給它的字符串。它類似於ucfirst()函數,該函數僅返回大寫的第一個字符。
注意:UpperCase中已經存在的字符不會被修改。
用法: uc String
返回值:字符串大寫。
示例1:
#!/usr/bin/perl -w
# String to be converted to UPPERCASE
$string = "geeksfOrGeeks";
print "Original String: $string\n";
# Converting the string to
# UPPERCASE using uc() function
$UPPER_STRING = uc($string);
print "Modified String: $UPPER_STRING";
輸出:
Original String: geeksfOrGeeks Modified String: GEEKSFORGEEKS
示例2:
#!/usr/bin/perl -w
# String to be converted to UPPERCASE
$string = "WelComEToGeeKS";
print "Original String: $string\n";
# Converting the string to
# UPPERCASE using uc() function
$UPPER_STRING = uc($string);
print "Modified String: $UPPER_STRING";
輸出:
Original String: WelComEToGeeKS Modified String: WELCOMETOGEEKS
相關用法
- Perl each()用法及代碼示例
- Perl sin()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl ord()用法及代碼示例
- Perl log()用法及代碼示例
- Perl int()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl exp用法及代碼示例
- Perl hex用法及代碼示例
- Perl cos()用法及代碼示例
- Perl tell()用法及代碼示例
- Perl chr()用法及代碼示例
- Perl rindex()用法及代碼示例
- Perl join()用法及代碼示例
- Perl keys()用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | uc() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。