Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: broken link fixed


Syntax


Code Block
languagenone
set aTransliteratedString = aString.transliterate(aTransliterationPattern);


Semantics

Transliterates a string according to the supplied pattern. The transliteration is implemented by the use of the ICU library. See the ICU User Guide for more information on the transliteration patterns.

SubstitutablesaTransliteratedString, aString Can be any variable or object attribute having the type String.
aTransliterationPattern
Can be any variable or object attribute having the type String.
The pattern must correspond to the transliteration patterns (see  ICU User Guide).
Examples

This example removes all accents from the given string aString.

Code Block
languagenone
set aTransliteratedString = aString.transliterate("NFD; [:M:] Remove; NFC;");


Multiexcerpt include
MultiExcerptNametransliterate
nopaneltrue
PageWithExcerptINTERNAL:_examples_BRIDGE