Click to See Complete Forum and Search --> : how to divide one word into parts


maheshdesaibabu
September 23rd, 2001, 04:49 AM
How to divide on field value in 2 different strings and store into differnt values.

Mahesh

MKSa
September 23rd, 2001, 03:43 PM
You can try the Split function. It returns a zero-based, one-dimensional array containing a specified number of substrings. ex:Arr = Split("abc.dfghij.klmn",".")

Here Arr is a one dimensional array with Arr(0)="abc", Arr(1)="dfghij" and Arr(2)="klmn"