I have a string with multiple comma delimiters.
For example Test,User,Data,List
I need to pull the data between the delimiters into a variable, what's the best way to accomplish this in a single command. The application I'm using allows for using VBScript, but I can't do this using multiple lines, just a single nested command.
Thanks
Split(...)to put your data into an array.