Hi,
I have below array:
arr = {“ID:11”, “Name:Sonali”}
I am able to do split like below:
arrCols(0).Split(":“c)(0) which gives me ID and then arrCols(0).Split(”:"c)(1) gives me 11
To be able to refer values this way, i will have to remember the index of the key/value i am trying to use, there will be approx. 20 key value pairs in my array.
So, I want to refer these values by their key, is there any better/easier way to access the values?
Regards
Sonali