FORMULA LANGUAGE


@MiddleBack
Example

Returns any substring from the middle of a string. The middle is found by scanning the string from right to left, and parameters determine where the middle begins and ends.

Syntax

@MiddleBack( string ; offset ; numberchars )
@MiddleBack(
string ; offset ; endstring )
@MiddleBack(
string ; startString ; endstring )
@MiddleBack(
string ; startString ; numberchars )

Parameters

string


offset
startString
numberchars
endstring
Usage

If the first parameter is a list, the function operates on each element of the list, and the return value is a list with the same number of elements.

Return value

middle


Example
See Also