Hey guys, i need help.
My ASP code:
<%
Dim expression: Set expression = New RegExp
expression.Pattern = "[^:]*:([^,]*),?"
expression.Global = True
Dim match, first_matches
Set first_matches = expression.Execute(theStr)
For Each match In first_matches
response.write "item = " & match.SubMatches(0) & "<br />"
Next
Set first_matches = Nothing
Set expression = Nothing
%>
And my output in a browser:
item = 134
item = 169
item = 69.70
item = 35
item = 0
item = 0
item = 0
item = 0
item = 0
item = 273.70
item = 39/IT5AFKLE
how can i get each INDIVIDUAL element or 'item' out into a <td> in a asp page?
i've tried this (for example), but it doesnt work....
<tr><td><%=match.SubMatches(2)%></td></tr>
Help, please...
Picco
www.crmpicco.co.uk