The Telegraph
 
 
ARCHIVES
Since 1st March, 1999
 
THE TELEGRAPH
 
 
Email This Page
SCORE CARD
<% dim line() redim line(20) dim dat1,dat2,dat3 dim txt dim reg,temp set reg=new regexp reg.global=true reg.IgnoreCase=true line(0)="*Antigua XI" line(1)="First innings 300" line(2)="*India" line(3)="First innings (overnight 33/1)" line(4)="W.Jaffer       run out       52" line(5)="VVS Laxman       c Joseph b Athanaze        72" line(6)="R.Dravid       c Athanaze b Martin       5" line(7)="M.Kaif       ret. hurt       53" line(8)="S.Raina       c Joseph b Martin       4" line(9)="Y.Singh       c Dave b Athanaze       20" line(10)="M.Dhoni       not out       60" line(11)="I.Pathan       st Mentore b Athanaze       12" line(12)="D.Karthick       c Mentore b Hamspon       9" line(13)="H.Singh       not out       7" line(14)="Extras (b-5, lb-2, w-3, nb-1)       11" line(15)="Total (for 9 wkts in 96 ovs)       311" line(16)="Fall of wickets: 1/29, 2/87, 3/96, 4/194, 5/194, 6/207, 7/227, 8/273, 9/293" line(17)="Bowling: Sanford 20-5-68-1, Matthew 6-2-16-0, Hampson 16-5-43-1, Skepple 8-0-31-0, Martin 25-6-67-2, Athanaze 22-2-79-3" redim preserve line(18) 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