Function util::split

Function Documentation

std::vector<std::string> util::split(std::string source, char delimiter)

Split a string into parts based on a delimiter.

Return

A vector of strings that are the split of the input.

Parameters
  • [in] source: The source string to split.

  • [in] delimiter: The delimiter characters.