Japanese Text Analyzer

count-words

Measure word count in text files by specifying the file path. Processes English words separated by spaces and uses morphological analysis for Japanese text. Supports Windows and WSL/Linux file paths.

Instructions

ファイルの単語数を計測します。絶対パスを指定してください(Windows形式 C:\Users...、またはWSL/Linux形式 /c/Users/... のどちらも可)。英語ではスペースで区切られた単語をカウントし、日本語では形態素解析を使用します。

Input Schema

NameRequiredDescriptionDefault
filePathYes単語数をカウントするファイルのパス(Windows形式かWSL/Linux形式の絶対パスを推奨)
languageNoファイルの言語 (en: 英語, ja: 日本語)en

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "filePath": { "description": "単語数をカウントするファイルのパス(Windows形式かWSL/Linux形式の絶対パスを推奨)", "type": "string" }, "language": { "default": "en", "description": "ファイルの言語 (en: 英語, ja: 日本語)", "enum": [ "en", "ja" ], "type": "string" } }, "required": [ "filePath" ], "type": "object" }

You must be authenticated.

Other Tools from Japanese Text Analyzer

Related Tools

ID: a84hu4w43w