[SPLIT] function divides a text string from an attribute using a specified delimiter and returns one of the resulting segments. The segment to be returned is determined by a zero-based index.
Syntaxe
La syntaxe est la suivante :
[SPLIT;[Attribute];Delimiter;0]
-
Attribut: The attribute containing the value to be split (e.g.,
[givenname]). -
Delimiter: The character used to divide the string. For a space, this can be left empty.
Use Case
Get the First Name
This example shows how to extract the first part of a given name that contains a space.
-
Saisie
[givenname]:Anne Mette -
Expression:
[SPLIT;[givenname]; ;0] -
Comment ça marche ?: The function splits the
givennameattribute by the space character and returns the first segment (at index0). -
Résultat:
Anne
Get the Last Name
This example shows how to extract the last name from a full name string.
-
Saisie
[DisplayName]:Anne Mette Olsen -
Expression:
[SPLIT;[DisplayName]; ;2] -
Comment ça marche ?: The function splits the
DisplayNameattribute by the space character and returns the third segment (at index2). -
Résultat:
Olsen