#include "common.h"
#include <ctype.h>
#include <string>
Include dependency graph for string_util.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | mysqlpp |
Functions | |
void | mysqlpp::strip (std::string &s) |
Strips blanks at left and right ends. | |
void | mysqlpp::escape_string (std::string &s) |
C++ equivalent of mysql_escape_string(). | |
void | mysqlpp::str_to_upr (std::string &s) |
Changes case of string to upper. | |
void | mysqlpp::str_to_lwr (std::string &s) |
Changes case of string to lower. | |
void | mysqlpp::strip_all_blanks (std::string &s) |
Removes all blanks. | |
void | mysqlpp::strip_all_non_num (std::string &s) |
Removes all non-numerics. |