Japanese Text Analyzer

by Mistizz
Verified

count-clipboard-words

テキストの単語数を計測します。英語ではスペースで区切られた単語をカウントし、日本語では形態素解析を使用します。

Input Schema

NameRequiredDescriptionDefault
languageNoテキストの言語 (en: 英語, ja: 日本語)en
textYes単語数をカウントするテキスト

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "language": { "default": "en", "description": "テキストの言語 (en: 英語, ja: 日本語)", "enum": [ "en", "ja" ], "type": "string" }, "text": { "description": "単語数をカウントするテキスト", "type": "string" } }, "required": [ "text" ], "type": "object" }