41,228
次編輯
變更
Str函数
,创建页面,内容为“{| class="wikitable" align="right" |- | style="background: #FF2400" align= center| '''<big>Str函数</big>''' |- |<center><img src=https://p1.ssl.qhimg.com/t01d8359…”
{| class="wikitable" align="right"
|-
| style="background: #FF2400" align= center| '''<big>Str函数</big>'''
|-
|<center><img src=https://p1.ssl.qhimg.com/t01d8359f724c0ad853.jpg width="300"></center>
<small>[https://baike.so.com/gallery/list?ghid=first&pic_idx=1&eid=5370116&sid=5605982 来自 网络 的图片]</small>
|-
|-
| align= light|
|}
'''Str函数''',是VB的一种函数,可以将数字型变量或常量转换成字符型变量或常量。
=='''简介'''==
当一[[数字]]转成字符串时,总会在前头保留一空位来表示正负。如果 number 为正,返回的字符串包含一前导空格暗示有一正号。
使用 Format 函数可将数值转成必要的格式,如日期、时间、货币或其他用户自定义格式。与 Str 不同的是,Format 函数不包含前导空格来放置 number 的正负号。
注意 Str 函数只视句点 (.) 为有效的小数点。如果使用不同的小数点(例如,国际性的应用程序),可使用 CStr 将数字转成字符串。
=='''评价'''==
本示例使用 Str 函数来将一个数字转成字符串。当数字转成字符串时,字符串的第一个位一定是空格或是正负号。
Dim MyString = Str(459) ' 返回 " 459"。MyString = Str(-459.65) ' 返回 "-459.65"。MyString = Str(459.001) ' 返回 " 459.001"。<ref>[https://baike.so.com/doc/5370116-5605982.html Str函数]搜狗</ref>
=='''参考文献'''==
|-
| style="background: #FF2400" align= center| '''<big>Str函数</big>'''
|-
|<center><img src=https://p1.ssl.qhimg.com/t01d8359f724c0ad853.jpg width="300"></center>
<small>[https://baike.so.com/gallery/list?ghid=first&pic_idx=1&eid=5370116&sid=5605982 来自 网络 的图片]</small>
|-
|-
| align= light|
|}
'''Str函数''',是VB的一种函数,可以将数字型变量或常量转换成字符型变量或常量。
=='''简介'''==
当一[[数字]]转成字符串时,总会在前头保留一空位来表示正负。如果 number 为正,返回的字符串包含一前导空格暗示有一正号。
使用 Format 函数可将数值转成必要的格式,如日期、时间、货币或其他用户自定义格式。与 Str 不同的是,Format 函数不包含前导空格来放置 number 的正负号。
注意 Str 函数只视句点 (.) 为有效的小数点。如果使用不同的小数点(例如,国际性的应用程序),可使用 CStr 将数字转成字符串。
=='''评价'''==
本示例使用 Str 函数来将一个数字转成字符串。当数字转成字符串时,字符串的第一个位一定是空格或是正负号。
Dim MyString = Str(459) ' 返回 " 459"。MyString = Str(-459.65) ' 返回 "-459.65"。MyString = Str(459.001) ' 返回 " 459.001"。<ref>[https://baike.so.com/doc/5370116-5605982.html Str函数]搜狗</ref>
=='''参考文献'''==