將數字輸出前面補0
function:
conversion_exit_alpha_input
程式碼data: test(5),
value like regup-wrbtr value 150.
call function 'conversion_exit_alpha_input'
exporting
input = '150'
importing
output = test
exceptions
others = 1.
write : test.
--result--
00150
unpack 也可以實現同樣的功能.
data: l_index(3).
do 3 times.
l_index = l_index + 1.
unpack l_index to l_index.
write:/ l_index.
enddo.
--result--
001002
003
PHP PHP 數字前面補0滿足位數
需求 1 0001 56 0056 228 0228 2020 2020 可以使用php內建函式str pad 函式把字串填充為新的長度。str pad string,length,pad string,pad type 引數 描述 string 必需。規定要填充的字串。length 必需。規定新的...
PHP 數字前面補零 固定位數補0
在處理訂單編號的時候,需要固定位數的數字,比如需要固定四位數格式 1 0001 56 0056 288 0288 1992 1992可以使用php內建函式str pad 函式把字串填充為新的長度。str pad string,length,pad string,pad type 引數 描述 stri...
PHP 數字前面補零 固定位數補0
str pad string,length,pad string,pad type 引數 描述 string 必需。規定要填充的字串。length 必需。規定新的字串長度。如果該值小於字串的原始長度,則不進行任何操作。pad string 可選。規定供填充使用的字串。預設是空白。pad type 可...