I have an array which contains simple strings. E.g.
dim a() as string
a(0) = "B"
a(1) = "G"
a(2) = "F"
a(3) = "A"
a(4) = "C"
Is there an easy (and simple) way to sort the array entries into alphabetical order (either as they are entered into the array or after it is populated)?
Thanks
dim a() as string
a(0) = "B"
a(1) = "G"
a(2) = "F"
a(3) = "A"
a(4) = "C"
Is there an easy (and simple) way to sort the array entries into alphabetical order (either as they are entered into the array or after it is populated)?
Thanks
Last edited by a moderator: