1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
table_create Normalizations TABLE_PAT_KEY ShortText
[[0,0.0,0.0],true]
column_create Normalizations normalized COLUMN_SCALAR ShortText
[[0,0.0,0.0],true]
load --table Normalizations
[
{"_key": "あ", "normalized": "<あ>"},
{"_key": "いち", "normalized": "1"}
]
[[0,0.0,0.0],2]
normalize 'NormalizerTable("normalized", "Normalizations.normalized", "report_source_offset", true)' ".あ。いち."
[
[
0,
0.0,
0.0
],
{
"normalized": ".<あ>。1.",
"types": [],
"checks": [],
"offsets": [
0,
1,
1,
1,
4,
7,
13,
14
]
}
]
|