Porovnávané verzie

Kľúč

  • Tento riadok sa pridal
  • Riadok je odstránený.
  • Formátovanie sa zmenilo.

%RemoveDiacritics function


Function
The function removes diacritical marks from a given text (replaces each character with a diacritical mark by the corresponding one without - according to the table).
Declaration


Blok kódu
languageesl
themeConfluence
TEXT %RemoveDiacritics(
   TEXT in str
 )
Parameters


strText.
Example


Blok kódu
languageesl
themeRDark
BEGIN
 TEXT _txt
 ; text with diacritical marks
 _txt := "ľčšžčáľéÉÁ"
 ; clear diacritical marks
 _txt := %RemoveDiacritics(_txt)
 END
 
The value of the parameter _text is "lsczcaleEA".