Open main menu

Spaces

Revision as of 14:38, 25 January 2012 by 194.84.116.138 (talk) (Created page with "Returns a string expression consisting of a specified number of spaces. ==== Usage ==== <syntaxhighlight>Spaces(Num)</syntaxhighlight> Where: Num - a numerical expre...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Returns a string expression consisting of a specified number of spaces.

Usage

Spaces(Num)

Where: Num - a numerical expression specifying the number of spaces

Example

The example inserts two blank spaces between the letters "a" and "b":


Print("a"+Spaces(2)+"b");