当前位置:首页>维修大全>生活>

space在vb中的意思

space在vb中的意思

更新时间:2023-04-21 14:43:06

space在vb中的意思

Space 函数:返回特定数目空格的 Variant (String)。示例:本示例使用 Space 函数来生成一个字符串,字符串的内容为空格,长度为指定的长度。

Dim MyString' 返回 10 个空格的字符串。

MyString = Space(10)' 将 10 个空格插入两个字符串中间。

MyString = "Hello" & Space(10) & "World"

更多栏目