Member Junction
    Preparing search index...

    Action that analyzes text content and provides various statistics including word count, character count, readability scores, and common word analysis.

    // Analyze a simple text
    await runAction({
    ActionName: 'Text Analyzer',
    Params: [{
    Name: 'Text',
    Value: 'The quick brown fox jumps over the lazy dog.'
    }]
    });

    // Analyze with custom options
    await runAction({
    ActionName: 'Text Analyzer',
    Params: [{
    Name: 'Text',
    Value: 'Your text here...'
    }, {
    Name: 'IncludeWordFrequency',
    Value: true
    }]
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods

    Constructors

    Methods