LOTUSSCRIPT 言語


例:Split 関数
Sub Initialize
Dim ret As Variant
dim teststr as string
Dim delim As String

teststr = "This is the Connection"
delim = " "
ret = split(teststr, delim)

For x = 0 to 3
Print ret(x)
Next

End Sub

'OUTPUT
'This
'is
'the
'Connection

関連項目