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

Removes all alphabetic characters from a text, leaving only non-letter characters.

Syntax

Text.RemoveLetters(
    textToModify as text
) as text

Parameters

  • textToModify: The text string from which to remove alphabetic characters.

Return Value

Returns the input text with all alphabetic characters removed.

Example

Text.RemoveLetters("Hello123 World!")

Result

"123 !"

Clone this wiki locally