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