I am looking for any suggestions to split a simple string, with the values separated by commas. For example:
strFlds = "poc_id,poc_name,address_id"
I was originally using this to perform the split;
varFlds = Split(strFlds, ",")
But this will only return poc_id,poc_name.
Is there an easy way to include the last value in this split?


Reply With Quote
