Difference between revisions of "MC-Basic:SPACE$"
m (Text replace - "''<return value>''" to "<''return value''>") |
|||
| (4 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
| + | {{Languages|MC-Basic:SPACE$}} | ||
{{MC-Basic | {{MC-Basic | ||
|SHORT FORM= | |SHORT FORM= | ||
| Line 38: | Line 39: | ||
|SEE ALSO= | |SEE ALSO= | ||
| − | * [[ | + | * [[MC-Basic:CHR$|CHR$]] |
| − | * [[ | + | * [[MC-Basic:STRING$|STRING$]] |
| − | [[Category | + | [[Category:MC-Basic:String Manipulation|SPACE$]] |
}} | }} | ||
Latest revision as of 06:13, 28 April 2017
| Language: | English • 中文(简体) |
|---|
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