This is probably a very simple question. But I have this array, from which I need to remove the unnecessary parts. But I still want it in an array.
So the array looks like this when it arrives:
ArrValues(0) "Firstname=FIRSTNAME" ArrValues(1) "Lastname=LASTNAME" ArrValues(2) "Username=USERNAME" ArrValues(3) "Displayname=DISPLAYNAME"
Then I send this array through this piece of code:
For Each s In arrValues s = Split(s, "=") s = s(1) Next
This breaks the lines, so I only get FIRSTNAME and so on. But I want to send each cleared string back to the array again. How to do it?
Kenny bones
source share