Text.TrimEnd
Verwijdert alle volgspaties.
Syntax
Text.TrimEnd(
text as text,
optional trim as any
) as text
Remarks
Retourneert het resultaat van het verwijderen van alle volgspaties uit de tekstwaarde text
.
Examples
Example #1
Volgspaties verwijderen uit " a b c d ".
Text.TrimEnd(" a b c d ")
Result:
" a b c d"
Category
Text.Transformations