Hi All,
So far I have:
This is making my first split but I now want to make the second split at every "~" character, I was wondering if I could split it within the first split?, If you get what I mean, So I can add the "<td>"'s.
Thanks.
So far I have:
Code:
dim addresses
dim a
'List of names and addreses, (#FirstName~LastName~HouseNumber~StreetName~PhoneNumber), more to 'add.
addresses="#Stephen~Thomas~61~Rasemary Hill RD~(0121)225888#Mark~Davis~34~Lovatt Close~(07900)321049"
a=split(addresses,"#")
for i=0 to UBound(a)
response.write a(i) & "<tr>"
next
This is making my first split but I now want to make the second split at every "~" character, I was wondering if I could split it within the first split?, If you get what I mean, So I can add the "<td>"'s.
Thanks.