FIND

function FIND(arg1: string = null, arg2: string = null, arg3: number = null): number

Description

Returns the starting position of one text string within another text string. This function is case-sensitive.

Parameters

arg1stringdefault: null

The text to find. Use double quotes (empty text) to match the first character in the search string. Wildcard characters are not allowed.

arg2stringdefault: null

The text containing the text to find.

arg3numberdefault: null

Specifies the character at which to start the search. The first character in the search string is character number 1. If omitted, this parameter is equal to 1.

Returns

number

Try It

var oWorksheet = Api.GetActiveSheet();
var oFunction = Api.GetWorksheetFunction();
oWorksheet.GetRange("A1").SetValue(oFunction.FIND("line", "Online Office"));

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).