以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- format函数 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=174094) |
-- 作者:ykhgj -- 发布时间:2021/12/31 11:28:00 -- format函数 Dim st1 As String st1="1" st1=Format(st1,"000") 为什么这样输出是000,不应该是001吗
|
-- 作者:有点蓝 -- 发布时间:2021/12/31 11:39:00 -- format是针对数值的?不是针对字符串的 Dim st1 As String st1=Format(1,"000") msgbox(st1) |