Html.Table
指定された HTML に対して指定された CSS セレクターを実行した結果を含むテーブルを返します。
Syntax
Html.Table(
html as any,
columnNameSelectorPairs as list,
optional options as record
) as table
Remarks
提供された html
に対して指定された CSS セレクター を実行した結果を含むテーブルを返します。省略可能なレコード パラメーター options
が追加のプロパティを指定するために提供されることがあります。レコードには、次のフィールドを含めることができます。
RowSelector
Examples
Example #1
サンプルの html テキスト値からテーブルを返します。
Html.Table("<div class=""name"">Jo</div><span>Manager</span>", {{"Name", ".name"}, {"Title", "span"}}, [RowSelector=".name"])
Result:
#table({"Name", "Title"}, {{"Jo", "Manager"}})
Example #2
サンプルの html テキスト値からすべての href を抽出します。
Html.Table("<a href=""/test.html"">テスト</a>", {{"Link", "a", each [Attributes][href]}})
Result:
#table({"Link"}, {{"/test.html"}})
Category
データにアクセスしています