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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。