Delen via


Text.TrimStart

Syntaxis

Text.TrimStart(text as nullable text, optional trim as any) as nullable text

Info

Retourneert het resultaat van het verwijderen van alle voorloopspaties uit tekstwaarde text.

Voorbeeld 1

Verwijder voorloopspaties uit " a b c d ".

Gebruik**

Text.TrimStart("   a b c d    ")

Uitvoer

"a b c d    "