Explode function?

Posted by Greven on Mon 19 Dec 2005 10:39 PM — 2 posts, 20,540 views.

Canada #0
Does anyone know of an equivelent function to explode in PHP for VBscript? I'm doing some intense file manipulation, and this would make my life so much easier, as I think VBscripts's file I/O pitiful.

thanks alot
#1
Yep, you want the Split function:

array split (expression[,delimiter[,count[,compare]]])

(Default delimiter is space, default count is unlimited (-1), default compare is textual where 1=textual, 0=binary.)