Skip to content
Rodrigo Celso de Lima Porto edited this page Jan 13, 2026 · 1 revision

Removes accents from characters in a text string.

Syntax

Text.RemoveAccents(
    inputText as text
) as text

Parameters

  • inputText: The text string from which to remove accents.

Return Value

Returns the input text with all accented characters replaced by their unaccented equivalents.

Example

Text.RemoveAccents("CafΓ©")

Result

"Cafe"

Clone this wiki locally