VB.NET格式输出函数format怎么用?
VB.NET初学者,虽然想用数组和冒泡排序来完成取最值,但还不会用。不过这不是问题的关键。真正的问题是,为什么label3的输出结果还是会有整数,比如5,format里面...
VB.NET初学者,虽然想用数组和冒泡排序来完成取最值,但还不会用。不过这不是问题的关键。真正的问题是,为什么label3的输出结果还是会有整数,比如5,format里面的".0"没用吗?难道不应该是"5.0"吗?
展开
2个回答
2015-04-03 · 知道合伙人互联网行家
关注
展开全部
果在格式化数字时没有指定 format,Format 会提供与 Str 函数类似的功能
' 如果没有指定格式,则返回字符串。
MyStr = Format(23) ' 返回 "23"。
' 用户自定义的格式。
MyStr = Format(5459.4, "##,##0。00") ' 返回 "5,459.40"。
MyStr = Format(334。9, "###0。00") ' 返回 "334.90"。
MyStr = Format(5, "0。00%") ' 返回 "500.00%"。
MyStr = Format("HELLO", "<") ' 返回 "hello"。
MyStr = Format("This is it", ">") ' 返回 "THIS IS IT
' 如果没有指定格式,则返回字符串。
MyStr = Format(23) ' 返回 "23"。
' 用户自定义的格式。
MyStr = Format(5459.4, "##,##0。00") ' 返回 "5,459.40"。
MyStr = Format(334。9, "###0。00") ' 返回 "334.90"。
MyStr = Format(5, "0。00%") ' 返回 "500.00%"。
MyStr = Format("HELLO", "<") ' 返回 "hello"。
MyStr = Format("This is it", ">") ' 返回 "THIS IS IT
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询