Health-GPS  1.2.2.0
Global Health Policy Simulation model (Health-GPS)
string_util.cpp File Reference
#include "string_util.h"
#include <algorithm>
Include dependency graph for string_util.cpp:

Namespaces

 hgps
 Top-level namespace for Health-GPS C++ API.
 
 hgps::core
 Top-level namespace for Health-GPS Core C++ API.
 

Functions

std::string hgps::core::trim (std::string value) noexcept
 Trim leading and trailing occurrences of white-space characters from string. More...
 
std::string hgps::core::to_lower (const std::string_view &value) noexcept
 Converts the given ASCII string to lower-case. More...
 
std::string hgps::core::to_upper (const std::string_view &value) noexcept
 Converts the given ASCII string to upper-case. More...
 
std::vector< std::string_view > hgps::core::split_string (const std::string_view &value, std::string_view delims) noexcept
 Splits a string into substrings based on specified delimiting characters. More...