Go to the source code of this file.
|
| std::string | MooseUtils::trim (const std::string &str, const std::string &white_space=" \\\) |
| | Standard scripting language trim function. More...
|
| |
| template<typename T > |
| void | MooseUtils::tokenize (const std::string &str, std::vector< T > &elements, unsigned int min_len=1, const std::string &delims="/") |
| | This function will split the passed in string on a set of delimiters appending the substrings to the passed in vector. More...
|
| |
| template<class T > |
| bool | MooseUtils::convert (const std::string &str, T &value, const bool throw_on_failure) |
| | Takes the string representation of a value and converts it to the value. More...
|
| |
| template<typename T > |
| bool | MooseUtils::tokenizeAndConvert (const std::string &str, std::vector< T > &tokenized_vector, const std::string &delimiter=" \\\) |
| | tokenizeAndConvert splits a string using delimiter and then converts to type T. More...
|
| |
| std::string | MooseUtils::toUpper (std::string name) |
| | Convert supplied string to upper case. More...
|
| |
| std::string | MooseUtils::toLower (std::string name) |
| | Convert supplied string to lower case. More...
|
| |