38std::string convertToString<std::string>(
const std::string &value,
int precision )
40 static_cast<void>( precision );
46char convertFromString<char>(
const std::string &str )
48 return (
char)atoi( str.c_str() );
53char16_t convertFromString<char16_t>(
const std::string &str )
55 return (
char16_t)atoi( str.c_str() );
60char32_t convertFromString<char32_t>(
const std::string &str )
62 return (
char32_t)atoi( str.c_str() );
67wchar_t convertFromString<wchar_t>(
const std::string &str )
69 return (
wchar_t)atoi( str.c_str() );
74signed char convertFromString<signed char>(
const std::string &str )
76 return (
signed char)atoi( str.c_str() );
81unsigned char convertFromString<unsigned char>(
const std::string &str )
83 return (
unsigned char)atoi( str.c_str() );
88short convertFromString<short>(
const std::string &str )
90 return (
short)atoi( str.c_str() );
95unsigned short convertFromString<unsigned short>(
const std::string &str )
97 return (
unsigned short)atoi( str.c_str() );
102int convertFromString<int>(
const std::string &str )
104 return atoi( str.c_str() );
109unsigned int convertFromString<unsigned int>(
const std::string &str )
111 return (
unsigned int)strtoul( str.c_str(), 0, 0 );
116long convertFromString<long>(
const std::string &str )
118 return strtol( str.c_str(), 0, 0 );
123unsigned long convertFromString<unsigned long>(
const std::string &str )
125 return strtoul( str.c_str(), 0, 0 );
130long long convertFromString<long long>(
const std::string &str )
132 return strtoll( str.c_str(), 0, 0 );
137unsigned long long convertFromString<unsigned long long>(
const std::string &str )
139 return strtoull( str.c_str(), 0, 0 );
144float convertFromString<float>(
const std::string &str )
146 return strtof( str.c_str(), 0 );
151double convertFromString<double>(
const std::string &str )
153 return strtod( str.c_str(), 0 );
158long double convertFromString<long double>(
const std::string &str )
160 return strtold( str.c_str(), 0 );
169 while( isspace( c ) && i < str.length() )
172 if( c ==
'0' || c ==
'f' || c ==
'F' )
174 if( c ==
'1' || c ==
't' || c ==
'T' )
177 return (
bool)convertFromString<int>( str );
181void toLower( std::string &outstr,
const std::string &instr )
183 outstr.resize( instr.size() );
185 for(
size_t i = 0; i < instr.size(); ++i )
186 outstr[i] = tolower( instr[i] );
190std::string
toLower(
const std::string &instr )
200void toUpper( std::string &outstr,
const std::string &instr )
202 outstr.resize( instr.size() );
204 for(
size_t i = 0; i < instr.size(); ++i )
205 outstr[i] = toupper( instr[i] );
209std::string
toUpper(
const std::string &instr )
223 outstr.erase( std::remove_if( outstr.begin(), outstr.end(), ::isspace ), outstr.end() );
237int stringWrap( std::vector<std::string> &lines,
const std::string &str,
int width )
239 int L = str.length();
243 int startPos, tmpPos, endPos;
254 endPos = startPos + width;
258 lines.push_back( str.substr( startPos, L - startPos ) );
265 while( !isspace( str[tmpPos] ) && tmpPos >= startPos )
269 if( tmpPos > startPos )
272 lines.push_back( str.substr( startPos, endPos - startPos ) );
277 if( str[startPos] ==
' ' )
void toUpper(std::string &outstr, const std::string &instr)
Convert a string to all upper case.
int stringWrap(std::vector< std::string > &lines, const std::string &str, int width)
Wrap a string by breaking it into smaller sized portions of a desired width.
void toLower(std::string &outstr, const std::string &instr)
Convert a string to all lower case.
bool convertFromString< bool >(const std::string &str)
Template specialization of convertFromString for bool.
void removeWhiteSpace(std::string &outstr, const std::string &instr)
Remove all white space from a string.
Utilities for working with strings.