当前位置:编程学习 > asp >>

一段自动补位的函数(ASP)

一段自动补位的函数
Function FormatSn(getNum,getBit)
Dim FormatsnNum,Formatsnpre,Formatsnj
FormatsnNum = getBit - len(getNum)
For Formatsnj = 1 To FormatsnNum
Formatsnpre = Formatsnpre & "0"
Next
FormatSn = Formatsnpre & getNum
End Function
使用方法 FormatSn(getNum,getBit)
getNum 计数
getBit 共几位

补充:asp教程,高级应用
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,