Hi,
if you use SplitWords with a custom delimiter on a string that begins
with that delimiter, it will permanently hang the server ("No clock
movement"). You can use the following text command to reproduce it:
Quote:
program testbug()
var teststring := "* ";
var testarray := SplitWords(teststring, "*");
print (testarray);
endprogram
It will not hang if teststring is " *" or " * ".
Xandros