Skip to content

NormalizeString Function

Nilesh Ghodekar edited this page Jan 8, 2016 · 8 revisions

Syntax

string NormalizeString(value:string, [substitutions:string])

Description

Normalizes the first string, first by replacing the character substitutions specified in the second string and then removing all diacritics using the .NET string normalization function.

Remarks

If the optional second parameter (substitution string) specified, it is ':' and '|' separated in the form oldString1:newString1|oldString2:newString2… e.g. "Å:AA|Ä:AE|Ö:OE|å:aa|ä:ae|ö:oe|ß:ss|æ:ae"

Supported Version

2.14.611.0 and later

Examples

NormalizeString([//Target/LastName], "Å:AA|Ä:AE|Ö:OE|å:aa|ä:ae|ö:oe|ß:ss|æ:ae")

Clone this wiki locally