html_untag はHTMLタグをHTMLから除去したテキストを出力します。
html_untag は output_columns で説明している --output_columns で使います。
使い方を示すために使うスキーマ定義とサンプルデータは以下の通りです。
サンプルスキーマ:
実行例:
table_create WebClips TABLE_HASH_KEY ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
column_create WebClips content COLUMN_SCALAR ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
サンプルデータ:
実行例:
load --table WebClips
[
{"_key": "http://groonga.org", "content": "groonga is <span class='emphasize'>fast</span>"},
{"_key": "http://mroonga.org", "content": "mroonga is <span class=\"emphasize\">fast</span>"},
]
# [[0, 1337566253.89858, 0.000355720520019531], 2]
カラムの本文からHTMLタグを除去する html_untag 関数の簡単な例はこちらです。
実行例:
select WebClips --output_columns "html_untag(content)" --command_version 2
# [
# [
# 0,
# 1337566253.89858,
# 0.000355720520019531
# ],
# [
# [
# [
# 2
# ],
# [
# [
# "html_untag",
# "null"
# ]
# ],
# [
# "groonga is fast"
# ],
# [
# "mroonga is fast"
# ]
# ]
# ]
# ]
上記クエリを実行すると、"class" 属性つきの "span" タグが除去されているのがわかります。html_untag 関数を使うのには --command_vesion 2 を指定しなければならないことに注意してください。
html_untag はHTMLテキストからHTMLタグを除去したタグなしのテキストを返します。