将整数格式化为特定的字符串格式
我想知道是否有一种方法可以将整数(789)格式化为字符串值(7.8.9)。
以下是我目前正在执行的设置数字格式的操作:
Dim i as integer
Dim s as String
i = 789
s = Left(i, 1) & "." & Mid(i, 2, 1) & "." & Right(i, 1)
注意:整数值始终是 3 位数字。
I was wondering of there was a way of formatting an integer (789) into a string value (7.8.9).
Here is what I am currently doing to format the number:
Dim i as integer
Dim s as String
i = 789
s = Left(i, 1) & "." & Mid(i, 2, 1) & "." & Right(i, 1)
Note: The integer value will always be a 3 digit number.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)