Is there any functions in foxpro 6.0 equivilant to split() in asp? It chops a string in pieces according to a delimiter and put these pieces into an array. e.g.
MyArray = split("a#b#123", "#"
will give
MyArray(0) = 'a'
MyArray(1) = 'b'
MyArray(2) = '123'
thanks! Please visit my WebCam!!
MyArray = split("a#b#123", "#"
will give
MyArray(0) = 'a'
MyArray(1) = 'b'
MyArray(2) = '123'
thanks! Please visit my WebCam!!