Perl中的sprintf()函数使用用户提供的格式,以使用列表中的值返回格式化的字符串。此函数与printf相同,但是它返回格式化的字符串而不是打印它。
用法: sprintf Format, List
返回值:格式化的标量字符串
示例1:
#!/usr/bin/perl -w
# Formatting the string using sprintf
$text1 = sprintf("%8s", 'Geeks');
$text2 = sprintf("%-8s", 'Geeks');
# Printing the formatted string
print "$text1\n$text2";
输出:
Geeks Geeks
示例2:
#!/usr/bin/perl -w
# Formatting the string using sprintf
$text1 = sprintf("%03d", '7');
$text2 = sprintf("%03d", '123');
$text3 = sprintf("%04d", '123');
# Printing the formatted string
print "$text1\n$text2\n$text3";
输出:
007 123 0123
相关用法
- Perl oct()用法及代码示例
- Perl log()用法及代码示例
- Perl each()用法及代码示例
- Perl int()用法及代码示例
- Perl tell()用法及代码示例
- Perl cos()用法及代码示例
- Perl abs()用法及代码示例
- Perl exp用法及代码示例
- Perl uc()用法及代码示例
- Perl sin()用法及代码示例
- Perl ord()用法及代码示例
- Perl hex用法及代码示例
- Perl chr()用法及代码示例
- Perl delete()用法及代码示例
- Perl push()用法及代码示例
注:本文由纯净天空筛选整理自Code_Mech大神的英文原创作品 Perl | sprintf() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。