NAME
SliceRight — Divide string by matching and separating to the right.
SYNOPSIS
SliceRight 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 right of the characters it finds. If there are multiple characters in a row then it cuts on each (e.g. axxxb, cut on x to the right -> ax x x b).

For information regarding exceptions / errors, see here.
EXAMPLES
% SliceRight ababab b
ab ab ab
SEE ALSO
SliceLeft, split
KEYWORDS
string