Hi George, Thanks a lot for your help. The code works just perfect. Thank you very much.
If anyone thinks they can do better than this, please let me know >_<.
Here's the code which I have modified from your's to suite my requirement.
#include<array.au3> ;; For displaying the arrays only
#include <INet.au3>
$Symbol = "TCS"
$Key = $Symbol & "EQN"
$flag = 0
$sURL = "http://www.nseindia.com/marketinfo/equities/cmquote_printer.jsp?key=" & $Key & "&symbol=" & $Symbol & "&flag=" & $flag
$sData = _INetGetSource ($sURL)
_GetTables($sData, "Price information");; Leave the 2nd Parameter blank to display all the tables
Func _GetTables($sSource, $sTable = -1) ;; Leave the 2nd Parameter blank to display all the tables
Local $sRegExp = "(?i)(?s)(<table.+?</table>)", $iRtn = 3
If $sTable <> -1 Then ;; a particular table was specified
$sTitle = $sTable
$sTable = StringRegExpReplace($sTable,"\s+", "\\s*")
$sRegExp = "(?i)(?s).*(<table.+?" & $sTable & ".+?</table>)"
$iRtn = 1
EndIf
$aTables = StringRegExp($sSource, $sRegExp, $iRtn)
If NOT @Error Then
For $i = 0 To Ubound($aTables) -1
$aTables[$i] = StringRegExpReplace($aTables[$i], "(?i)(</?t)h.*?>", "$1d>")
StringRegExpReplace($aTables[$i], "</tr>", "$1")
$iRows = @Extended
$iCols = _ColCount($aTables[$i])
Local $aData[$iRows][$iCols]
_ColData($aTables[$i], $aData)
_ArrayDisplay($aData, $iRows & " x " & $iCols & " x " & $sTitle)
;; If $sTable <> -1 then you can replace the _ArrayDisplay() with Return $aData
Next
EndIf
EndFunc ;<==> _GetTables()
Func _ColData($sTable, ByRef $aArray)
Local $aRows = StringRegExp($sTable, "(?i)(?s)(<tr.+?</tr>)", 3), $aVlues
If @Error Then Return SetError(1,1)
For $i = 0 To Ubound($aRows) -1
$aValues = StringRegExp($aRows[$i],"(?i)(?s)<td.+?</td>", 3)
If NOT @Error Then
For $j = 0 To Ubound($aValues) -1
$aArray[$i][$j] = _StripTags($aValues[$j])
Next
EndIf
Next
Return $aArray
EndFunc ;<==> _ColData()
Func _StripTags($sStr)
$sStr = StringRegExpReplace($sStr, "(?i)(?s)<.+?>", "")
$sStr = StringReplace($sStr, " ", "")
Return StringStripWS($sStr,3)
EndFunc ;<==> _StripTags()
Func _ColCount($sTable)
Local $iCount = 0, $iCols
Local $aRows = StringRegExp($sTable, "(?i)(?s)(<tr.+?</tr>)", 3)
If @Error Then Return SetError(1,1)
For $i = 0 To Ubound($aRows) -1
StringRegExpReplace($aRows[$i], "(?i)(?s)(<td.+?</td>)", "$1")
$iCols = @Extended
If $iCols > $iCount Then $iCount = $iCols
;MsgBox(0, "Test Row", $aRows[$i], 2)
Next
Return $iCount
EndFunc ;<==> _ColCount()
;
The only difference from your's is I used _INetGetSource, so that I don't create any temp file in the system. Now it get's the data twice the speed of _IETableGetCollection and the load is much lower on my machine.
Again thanks for your help