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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。