Skip to main content

This is documentation for Caché & Ensemble. See the InterSystems IRIS version of this content.Opens in a new tab

For information on migrating to InterSystems IRISOpens in a new tab, see Why Migrate to InterSystems IRIS?

Space

指定された数のスペースを含む文字列を返します。

Synopsis

Space(number)

引数

引数 number は、文字列に含むスペースの数です。

以下の例は Space 関数を使用して、指定された数のスペースを含む文字列を返します。

Dim MyString
MyString = Space(10)   ' Defines a string of 10 spaces.
Println "Hello" & MyString & "World" 
                       ' Insert 10 spaces between two strings.

関連項目

FeedbackOpens in a new tab