|
|
|
|
|
| | |
|
Active Server Pages ASP a directory of ASP tutorials applications scripts components and articles for the novice to professional developer. CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
Subject: |
Re: extract substring from string seperated by commas |
From: |
Kamran Ahmed |
Date: |
8/17/2000 4:19:17 AM |
IP: |
194.170.163.97 |
hi cm,
Afetr Posting this message ive worked it out and got the solution.
Heres the code;
Dim Strinput,Strarray,maxcounter
Strinput ="Visa/MasterCard, C.O.D., Pay Pal"
Response.Write (Strinput& "<BR>")
Strarray = split(Strinput,",")
maxcounter = ubound(Strarray)
For i = 0 to maxcounter
Response.Write ("<LI>" & Strarray(i) & "</LI><BR>")
Next
Thankx for Feedback.
Kamran.
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|