VBScript Space 函数
❮ VBScript 完整参考
Space 函数返回一个由指定数量的空格组成的字符串。
语法
Space(number)
参数 | 描述 |
---|---|
number | 必需。您希望字符串中包含的空格数。 |
示例 1
Dim txt
txt=Space(10)
response.write(txt)
输出
" "
❮ VBScript 完整参考
Space 函数返回一个由指定数量的空格组成的字符串。
Space(number)
参数 | 描述 |
---|---|
number | 必需。您希望字符串中包含的空格数。 |
Dim txt
txt=Space(10)
response.write(txt)
输出
" "
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]