Dear Bob

You need to set the columndelimiter to comma for your script to work. The
columndelimiter defaults to tab (sensibly, in my opinion).

This works:
on testFunction
     breakpoint
     set the columndelimiter to comma
     put "1,2,3" & return & "4,5,6" into myVar
     split myVar by column
     delete variable myVar[2]
     combine myvar by column
     put myVar
end testFunction

Michael

> I did this:
> 
> ON testFunction
>      breakpoint
>      put "1,2,3" & return & "4,5,6" into myVar
>      split myVar by column
>      delete variable myVar[2]
>      combine myvar by column
>      put myVar
> END testFunction

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to