count-characters-in-text
Count total characters, letters, numbers, and symbols in any text. Analyze text length and structure for precise character-based insights.
Instructions
Count characters in a text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
text | Yes | The text whose characters you want to count |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"text": {
"description": "The text whose characters you want to count",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}