bool OEStringTokenize(std::list<std::string> &strgrp,
const std::string &str,
const std::string &delim = " \t\n")
bool OEStringTokenize(std::vector<std::string> &strgrp,
const std::string &str,
const std::string &delim = " \t\n")
These functions break up the specified input string (str) into
individual tokens based on the specified delimiters (delim). The
resulting tokens are stored in the specified string group (strgrp). The
function always returns true.