27. Splitting a string into tokens with a list of possible delimiters
Write a function that, given a string and a list of possible delimiter characters, splits the string into tokens separated by any of the delimiters and returns them in anstd::vector.