Im trying to get every 2nd part of my array() for example..
dim arr() as string
dim words as string
words = "Hello there, My Name Is Beaver"
arr() = split(words, " ")
i want to create a loop to get the words: "There, name beaver"
so its like every 2 parts of the array()
Thankyou
dim arr() as string
dim words as string
words = "Hello there, My Name Is Beaver"
arr() = split(words, " ")
i want to create a loop to get the words: "There, name beaver"
so its like every 2 parts of the array()
Thankyou
Comment