Function Jet::Utilities::SplitStringOnDelimiterRecursively

Function Documentation

inline void Jet::Utilities::SplitStringOnDelimiterRecursively(const std::string &s, const std::string &delimiter, std::vector<std::string> &tokens)

Splits s on the given delimiter (as many times as possible) and stores the result in the provided vector.

Parameters
  • s – String to be split.

  • delimiter – Delimeter separating each part of the split string.

  • tokens – Vector to store the result of the split.