添加和去除前导零
Posted 独吊东南枝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了添加和去除前导零相关的知识,希望对你有一定的参考价值。
"加前导零
DEFINE add_pre_zero.
call function ‘CONVERSION_EXIT_ALPHA_INPUT‘
exporting
input = &1
importing
output = &2
exceptions
length_error = 1
others = 2.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
END-OF-DEFINITION.
"去前导零
DEFINE delete_pre_zero.
call function ‘CONVERSION_EXIT_ALPHA_OUTPUT‘
exporting
input = &1
importing
output = &2
exceptions
length_error = 1
others = 2.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
END-OF-DEFINITION.
以上是关于添加和去除前导零的主要内容,如果未能解决你的问题,请参考以下文章