Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Space function


May 13, 2021 VBScript


Table of contents


VBScript Space function

The VBScript Space function returns a string of a specified number of spaces.


VBScript Space function Complete VBScript reference manual

The Space function returns a string of a specified number of spaces.

Grammar

Space(number)

parameter describe
number Required.The number of spaces in the string.

Instance 1

Dim txt
txt=Space(10)
document.write(txt)

Output:

" "


VBScript Space function Complete VBScript reference manual