The Telegraph
 
 
ARCHIVES
Since 1st March, 1999
 
THE TELEGRAPH
 
 
Email This Page
SCORE CARD
<% dim line() redim line(16) dim dat1,dat2,dat3 dim txt dim reg,temp set reg=new regexp reg.global=true reg.IgnoreCase=true line(0)="*Bangladesh" line(1)="T. Iqbal       c Smith b Pollock       8" line(2)="Nazimuddin       lbw Ntini       0" line(3)="A. Ahmed       b M. Morkel       36" line(4)="M. Ashraful       c Smith b Pollock       10" line(5)="S. Hasan       run out       19" line(6)="A. Kapali       c De Vil’rs b M. M’kel       14" line(7)="M. Mortaza       c Duminy b Philander       12" line(8)="F. Reza       c Kemp b Philander       19" line(9)="M. Rahim       c Pollock b Van d’ Wath       4" line(10)="A. Razzak       not out       2" line(11)="S. Rasel       b Pollock       6" line(12)="Extras (lb-10, w-3, nb-1)       14" line(13)="Total (all out, 19.3 ovs)       144" line(14)="Fall of wickets: 1/8, 2/24, 3/34, 4/58, 5/77, 6/101, 7/119, 8/131, 9/134" line(15)="Bowling: Pollock 3.3-0-40-3, Ntini 2-0-31-1, M. Morkel 4-0-21-2, Van der Wath 4-0-13-1, Philander 4-0-23-2, Morkel 2-0-6-0" redim preserve line(16) response.write " " for i=0 to ubound(line)-1 reg.pattern=" " set temp=reg.Execute(line(i)) if temp.count=0 and left(line(i),1)="*" then 'Segregate name response.write " " & vbcrlf response.write " " & vbcrlf response.write " " & vbcrlf elseif temp.count=0 and left(line(i),1)<>"*" then 'Segregate info e.g. innings response.write " " & vbcrlf response.write " " & vbcrlf response.write " " & vbcrlf else 'The rest is data dat1=" " dat2=" " dat3=" " txt=split(line(i)," ",-1) for j=0 to ubound(txt) if txt(j)<>"" then if dat1=" " then dat1=txt(j) elseif dat2=" " then dat2=txt(j) elseif dat3=" " then dat3=txt(j) end if end if next if dat3=" " and dat2<>" " then dat3=dat2 dat2=" " end if response.write " " response.write " " & vbcrlf response.write " " & vbcrlf response.write " " & vbcrlf response.write " " & vbcrlf end if next response.write "
" & vbcrlf response.write "" & mid(line(i),2) & "" response.write "
" & vbcrlf response.write line(i) & "

" response.write "
" & vbcrlf response.write dat1 response.write "" & vbcrlf response.write dat2 response.write "" & vbcrlf response.write dat3 response.write "
" %>
Top
Email This Page