1. Docs
  2. Formulas
  3. Functions

TRANSLITERATE

Replaces non-ASCII characters with an ASCII approximation, or if none exists, a replacement character: “?”.

Categories: Text

Syntax

TRANSLITERATE(text)

Examples

Example 1

Input

1
{
2
"my_action": {
3
"message": È Î Ô Û"
4
}
5
}

Formula

TRANSLITERATE(my_action.message)

Output

"A E I O U"

Example 2

Input

1
{
2
"my_action": {
3
"message": "Trademark - ™, Pound Sterling - £, Cents - ¢"
4
}
5
}

Formula

TRANSLITERATE(my_action.message)

Output

"Trademark - ?, Pound Sterling - ?, Cents - ?"

Sample actions

Event Transform
My Action
Event Transform
My Action
Event Transform
TRANSLITERATE

Select an action to inspect

You can also click "Copy actions" and paste them in your Tines story to see how they work.

Was this helpful?