Difference between revisions of "MC-Basic:SPACE$"
m (Text replace - "''<return value>''" to "<''return value''>") |
|||
| Line 38: | Line 38: | ||
|SEE ALSO= | |SEE ALSO= | ||
| − | * [[ | + | * [[MC-Basic:CHR$|CHR$]] |
* [[Axystems:MC-Basic:STRING$|STRING$]] | * [[Axystems:MC-Basic:STRING$|STRING$]] | ||
[[Category:Axystems:MC-Basic:String_Manipulation|SPACE$]] | [[Category:Axystems:MC-Basic:String_Manipulation|SPACE$]] | ||
}} | }} | ||
Revision as of 08:36, 22 May 2014
SPACE$ generates a string consisting of the specified number of blank spaces.
Syntax
SPACE$(<number>)
Availability
All versions
Type
<return value>: String
<number>: Long
Range
<return value>: String
<number>: 0 to MaxLong
Scope
Configuration, Task or Terminal
Limitations
Read only
Examples
Test = “First”;Space$(10);”Next”
First Next