String functions

MIDDLE / MILIEU

Since Process17.0.0

Description

Thi function is used to extract the n characters of a string from the start index to the end index.

Syntax

1
@MIDDLE( "value"; beginIndex ; endIndex )

The function contains the following arguments :

Parameter Description Mandatory Comment
value Text from which characters must be extracted. Yes
beginIndex begin Index Yes
endIndex end Index Yes

Return value

The MIDDLE function returns a character string.

Examples

Example 1 : filling a text field with the contents of part of a string

1
@MIDDLE( "ABCDE"; 2 ; 4 )