Text.TrimStart
Removes all leading whitespace.
Syntax
Text.TrimStart(
text as text,
optional trim as any
) as text
Remarks
Returns the result of removing all leading whitespace from text value text
.
Examples
Example #1
Remove leading whitespace from " a b c d ".
Text.TrimStart(" a b c d ")
Result:
"a b c d "
Category
Text.Transformations