TRANSLITERATE

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

Syntax 

TRANSLITERATE(text)

Usage 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?