VBScript Space Function
--
- Home
- HTML
- JavaScript
- CSS
- Vue
- React
- Python3
- Java
- C
- C++
- C#
- AI
- Go
- SQL
- Linux
- VS Code
- Bootstrap
- Git
- Local Bookmarks
VBScript Tutorial
VBScript Examples
VBScript Keywords
In-depth Exploration
- Scripting Languages
- Computer
- Network Services
- Web Service
- Software
- Programming Languages
- Computer
- Programming
- Network Design and Development
- Script
VBScript Space Function
Complete VBScript Reference Manual
The Space function returns a string consisting of a specified number of spaces.
Syntax
Space(number)
| Parameter | Description |
|---|---|
| number | Required. The number of spaces in the string. |
Example 1
Dim txt
txt=Space(10)
document.write(txt)
Output:
" "
YouTip