Japanese Text Analyzer

by Mistizz
Verified

count-clipboard-chars

テキストの文字数を計測します。スペースや改行を除いた実質的な文字数をカウントします。

Input Schema

NameRequiredDescriptionDefault
textYes文字数をカウントするテキスト

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "text": { "description": "文字数をカウントするテキスト", "type": "string" } }, "required": [ "text" ], "type": "object" }