我希望数字字段始终显示为 3 位数字。根据需要用 0 向左填充。
示例:3 显示为 003,24 显示为 024,依此类推。假设最大数量为 999。
我该怎么做?谢谢。
我希望数字字段始终显示为 3 位数字。根据需要用 0 向左填充。
示例:3 显示为 003,24 显示为 024,依此类推。假设最大数量为 999。
我该怎么做?谢谢。
Function Lpad (Value as String, PadCharacter as String, PaddedLength as Integer)
Lpad = string(PaddedLength - Len(Value), PadCharacter) & Value
End Function
参考。
Lpad("3", "0", 3)