2
3
4
5
6
7
8
9
10
11
12
13
14
15
16#ifndef UTILS_STRINGUTILS_H
17#define UTILS_STRINGUTILS_H
25 std::string
toUpper(
const std::string &input);
30 std::string
toLower(
const std::string &input);
Class to propagate CR3BP dynamics in characteristic units.
Definition ConfigurationWriter.cpp:18
std::string toLower(const std::string &input)
Function to convert a string to all lower case.
Definition stringutils.cpp:31
bool caseInsensitiveEqual(const std::string &in_a, const std::string &in_b)
Function to compare two strings independent of case.
Definition stringutils.cpp:41
std::string toUpper(const std::string &input)
Function to convert a string to all upper case.
Definition stringutils.cpp:21