LOTUSSCRIPT LANGUAGE


Examples: Split function
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

See Also