Join
The Join function takes an array argument and concatenates all
of the elements into one long string. Each element of the array is
separated by a special separator string which is optionally supplied
as parameter two.
If you do not supply the separator string for the Join function,
the default will be a single space character.
Dim aArray
aArray = Array("The","Quick","Brown","Fox") Response.Write Join(aArray) Response.Write Join(aArray, " * ") Response.Write Join(aArray, "")
|
 |

|