當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl sprintf()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | sprintf() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。