isplit

lsst.daf.butler.core.utils.isplit(string: T, sep: T) → Iterator[T]

Split a string or bytes by separator returning a generator.

Parameters:
string : str or bytes

The string to split into substrings.

sep : str or bytes

The separator to use to split the string. Must be the same type as string. Must always be given.

Yields:
subset : str or bytes

The next subset extracted from the input until the next separator.