10#ifndef Tempus_String_Utilities_hpp
11#define Tempus_String_Utilities_hpp
15#include "Teuchos_RCP.hpp"
16#include "Teuchos_ParameterList.hpp"
17#include "Tempus_config.hpp"
22void trim(std::string& str);
25void StringTokenizer(std::vector<std::string>& tokens,
const std::string& str,
26 const std::string delimiter =
",",
bool trim =
false);
30 const std::vector<std::string>& tokens);
34 const std::vector<std::string>& tokens);
39template <
typename ScalarT>
41 const Teuchos::ParameterList& plist)
43 return plist.get<
double>(field);
ScalarT getScalarParameter(const std::string &field, const Teuchos::ParameterList &plist)
void TokensToDoubles(std::vector< double > &values, const std::vector< std::string > &tokens)
Turn a vector of tokens into a vector of doubles.
void trim(std::string &str)
Removes whitespace at beginning and end of string.
void StringTokenizer(std::vector< std::string > &tokens, const std::string &str, const std::string delimiters, bool trim)
Tokenize a string, put tokens in a vector.
void TokensToInts(std::vector< int > &values, const std::vector< std::string > &tokens)
Turn a vector of tokens into a vector of ints.