Help Splitting Simple String
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?
Re: Help Splitting Simple String
Split returns all values (apart from your delimiters), you are probably just not reading all the values.
Try this:
VB Code:
Dim intCounter as Integer
For intCounter = 0 To UBound(varFlds)
MsgBox varFlds(intCounter)
Next intCounter