-----Original Message-----
Ted,
1) split(strField1," ") will return an array of strings delimited by
spaces - but confusion if multiple whitespace
2) better: use VBScript regular expressions to find all 'matches' to the
pattern "([\w|.])" - more work to learn but worith it if you parse strings
much
--
Malcolm Cook - (e-mail address removed)
Database Applications Manager - Bioinformatics
Stowers Institute for Medical Research - Kansas City, MO USA
Hi Randal,
You can do this by using combinations of the Instr(), Left
(), Mid() and Len() functions.
Basically, Field2 would use the Left() function, and the
later fields would use Mid(), but you would then use
combinations of Instr() and Len() to set appropriate
starting points and lengths. For the later fields you
will likely have to nest some of the functions.
HTH, Ted Allen
.