Html.Table
Html.Table
function (optionalhtml
as nullable any,columnNameSelectorPairs
as list, optionaloptions
as nullable record) as table
Returns a table containing the results of running the specified CSS selectors against the provided
html
. An optional record parameter, options
, may be provided to specify additional properties. The record can contain the following fields: RowSelector
Returns a table from a sample html text value.
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", { {"Name", ".name"}, {"Title", "span"} }, [RowSelector=".name"])
table({"Name", "Title"}, { {"Jo", "Manager"} })
Extracts all the hrefs from a sample html text value.
Html.Table("<a href=""/test.html"">Test</a>", { {"Link", "a", each [Attributes][href]} })
table({"Link"}, { {"/test.html"} })
Last modified 4yr ago