Remove the specified characters from the left side of the string.
Example:
assert (Strings.trimLeft ("xxyhello", "xy") == "hello");
| s |
the string to trim. |
| cutset |
characters to remove from the left. |
|
trimmed string. |