textConvert
    Preparing search index...

    Interface TextStatistics

    Text statistics interface containing various metrics about text

    interface TextStatistics {
        alphanumericCount: number;
        averageSentenceLength: number;
        averageWordLength: number;
        characterCount: number;
        characterCountNoSpaces: number;
        letterCount: number;
        paragraphCount: number;
        readingTimeFormatted: string;
        readingTimeSeconds: number;
        sentenceCount: number;
        wordCount: number;
    }
    Index
    alphanumericCount: number

    Letter and number count (alphanumeric characters)

    averageSentenceLength: number

    Average sentence length in words

    averageWordLength: number

    Average word length in characters

    characterCount: number

    Total character count including whitespace and punctuation

    characterCountNoSpaces: number

    Character count excluding whitespace

    letterCount: number

    Letter count (only alphabetic characters)

    paragraphCount: number

    Paragraph count in the text (separated by 2+ newlines)

    readingTimeFormatted: string

    Estimated reading time as formatted string (e.g., "2 min 30 sec")

    readingTimeSeconds: number

    Estimated reading time in seconds (based on average reading speed)

    sentenceCount: number

    Sentence count in the text

    wordCount: number

    Word count in the text