Forum Moderators: open
I am working on a VBA project where I have a string that contains a list of data
item1
item2
item3
I want to split the string into an array.
In php I would use explode("\n", $list); How can I achieve this in VB.
Also, is there a function to put it back into a string (like php's implode)?
Thanks!
Erik
[devguru.com...]
Look at the split and join functions.