Writes a HTML-table to an array
#Include <FF.au3>
_FFTableWriteToArray([$vTable = 0[, $sMode = "index"[, $sReturnMode = "text"[, $iFilter = 0[, $bTransponse = False]]]]])
Parameters
$vTable | Table index (0-n), name or ID | ||||||||
$sMode |
|
||||||||
$sReturnMode |
|
||||||||
$iFilter | Optional (Default = false) true = swap the rows and columns |
Return Value
Success: | Returns an array containing content of the table |
Failure: | Returns 0 and sets @ERROR |
@ERROR: | 0 ($_FF_ERROR_Success) 1 ($_FF_ERROR_GeneralError) 4 ($_FF_ERROR_InvalidValue) 8 ($_FF_ERROR_NoMatch) |
Remarks
Related
_FFXpath
Example
#Include <FF.au3>#Include <Array.au3> _FFStart("http://ff-au3-example.thorsten-willert.de/",default,2) If _FFIsConnected() Then $aTable = _FFTableWriteToArray(1) _ArrayDisplay($aTable) EndIf