A list of slices.
TargetString | String to slice. |
Characters | Characters to slice on. |
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.
% SliceLeft "010" "1"
0 {10}
% SliceLeft "001" "1"
{00} 1