Text.TrimStart
Syntax
Text.TrimStart(text as nullable text, optional trim as any) as nullable text
About
Returns the result of removing all leading whitespace from text value text
.
Example 1
Remove leading whitespace from " a b c d ".
Usage**
Text.TrimStart(" a b c d ")
Output
"a b c d "