LOTUSSCRIPT LANGUAGE
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