 |
PhoenixMock
1.8.7
Tools to split/merge/print mock used in Phoenix
|
Go to the documentation of this file.
7 #ifndef __STRING_LOWER_UPPER_H__
8 #define __STRING_LOWER_UPPER_H__
bool isCharNumber(char ch)
Tels if the character is a number or not.
bool isCharLetter(char ch)
Tels if the character is a letter or '_'.
std::string firstToUpper(const std::string &str)
Convert first letter of the std::string in upper case.
std::string firstToLower(const std::string &str)
Convert first letter of the std::string in lower case.
bool isCharNumberOrLetterOrStar(char ch)
Tels if the character is letter, number, star or '_'.
bool isStrNumber(const std::string &str)
Tels if std::string contains figures.
bool isCharNumberOrDot(char ch)
Tels if the character is a number or a '.'.
bool isCharNumberOrLetter(char ch)
Tels if the character is letter, figure or '_'.
bool isCharUpperCase(char ch)
Tels if the character is upper case letter.
bool isListStrNumber(const std::list< std::string > &listStr)
Say if the list of std::string contains a number.
bool isCharNumberOrLetterOrDot(char ch)
Tels if the character is a letter, number, '.' or '_'.
bool isStrNumberOrDot(const std::string &str)
Tels if std::string contains figures or dots.
bool isCharNumberDotMinusPlusE(char ch)
Tels if the character is a figure, a '.', a -, +, e or E.
bool isCharLetterOrStar(char ch)
Tels if the character is letter, star or '_'.
bool isStrLowerCase(const std::string &str)
Say if the given std::string is in lowercase.
std::string strToLowerUnderscore(const std::string &str)
Convert std::string in lower case and space in '_'.
std::string strToUpper(const std::string &str)
Convert std::string in upper case.
bool isCharLowerCase(char ch)
Tels if the character is lower case letter.
bool isStrUpperCase(const std::string &str)
Say if the given std::string is in uppercase.
std::string strToLower(const std::string &str)
Convert std::string in lower case.
bool isCharNumberOrStar(char ch)
Tels if the character is number or star.
bool isStrNumberDotMinusPlusE(const std::string &str)
Tels if std::string std::string contains figures, '.', -, +, e or E.