|
-
September 23rd, 2001, 04:49 AM
#1
how to divide one word into parts
How to divide on field value in 2 different strings and store into differnt values.
Mahesh
-
September 23rd, 2001, 03:43 PM
#2
Re: how to divide one word into parts
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"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|