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