Text.TrimStart
Removes all leading whitespace.
function (optionaltext
as nullable any, optionaltrim
as nullable any) as nullable any
Returns the result of removing all leading whitespace from text value
text
.Text.Transformations
Remove leading whitespace from " a b c d ".
Text.TrimStart(" a b c d ")
"a b c d "
Last modified 4yr ago