Google Apps Script API
    Preparing search index...

    Find or replace text within a range, sheet or spreadsheet. Can also specify search options.

    interface TextFinder {
        findAll(): GoogleAppsScript.Spreadsheet.Range[];
        findNext(): GoogleAppsScript.Spreadsheet.Range;
        findPrevious(): GoogleAppsScript.Spreadsheet.Range;
        getCurrentMatch(): GoogleAppsScript.Spreadsheet.Range;
        ignoreDiacritics(ignoreDiacritics: boolean): TextFinder;
        matchCase(matchCase: boolean): TextFinder;
        matchEntireCell(matchEntireCell: boolean): TextFinder;
        matchFormulaText(matchFormulaText: boolean): TextFinder;
        replaceAllWith(replaceText: string): number;
        replaceWith(replaceText: string): number;
        startFrom(startRange: GoogleAppsScript.Spreadsheet.Range): TextFinder;
        useRegularExpression(useRegEx: boolean): TextFinder;
    }
    Index

    Methods