NAME
SliceLeft — Divide string by matching and separating to the left.
SYNOPSIS
SliceLeft TargetString Characters
DESCRIPTION
Return Value
A list of slices.
Arguments
TargetStringString to slice.
CharactersCharacters to slice on.
More Info
This command makes its cut to the left of the characters it finds. If there are multiple cut characters in a row then it cuts on each of them (e.g. axxxb, cut on x to the left -> a x x xb).

For information regarding exceptions / errors, see here.
EXAMPLES
% SliceLeft "010" "1"
0 {10}
% SliceLeft "001" "1"
{00} 1
SEE ALSO
SliceRight, split
KEYWORDS
string