Builds a string of the specified length whose value consists of spaces.
Syntax
Space ( n )
ArgumentDescription nA long whose value is the length of the string you want filled with spaces. The maximum value is 2,147,483,647, which is the maximum size for strings. Return value
String. Returns a string filled with n spaces if it succeeds and the empty string ("") if an error occurs. If n is null, Space returns null.