ExtractTableCell ( HTML ; cellNumber )
Returns the contents of the specified cell in HTML table.
Average rating: 3.9 (48 votes) Log in to vote
Michael Horak - Show more from this author
*COMMENT Visual Realisation |
Sample input:
ExtractTableCell (
"<html>
<body>
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
</body>
</html>"
;
2 )
"<html>
<body>
<table>
<tr>
<td>Cell A</td>
<td>Cell B</td>
</tr>
</body>
</html>"
;
2 )
Sample output:
Cell B
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)