Trim whitespace (space, tab, CR, LF) and additional specified chars from the start of the string.
The string to trim
More characters to trim from the string
1 2 | xf.Str.TrimStart( " %%Hi there" ) => %%Hi there xf.Str.TrimStart( " %%Hi there" , "%" ) => Hi there |