#include "Panzer_String_Utilities.hpp"
#include <sstream>
Go to the source code of this file.
|
void | panzer::trim (std::string &str) |
| Removes whitespace at beginning and end of string.
|
|
void | panzer::StringTokenizer (std::vector< std::string > &tokens, const std::string &str, const std::string delimiter=",", bool trim=false) |
| Tokenize a string, put tokens in a vector.
|
|
void | panzer::TokensToDoubles (std::vector< double > &values, const std::vector< std::string > &tokens) |
| Turn a vector of tokens into a vector of doubles.
|
|
void | panzer::TokensToInts (std::vector< int > &values, const std::vector< std::string > &tokens) |
| Turn a vector of tokens into a vector of ints.
|
|