1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
/// StringConvert.cpp
/**
*/
#include "StringConvert.h"
#include <cmath>
///
/**
*/
float
jcs::stof(const std::string& rString)
{
//float retval = 0;
//if (!rString.empty()) {
// retval = stof(rString, 0);
//}
//return retval;
if (rString.empty()) {
return 0;
}
return stof(rString, 0);
}
///
/**
\param rString std::string reference to convert to float.
\param n
\return A float.
*/
float
jcs::stof(const std::string& rString, int n)
{
std::stringstream ss;
ss << rString;
float f;
for (int i = 0; i <= n; ++i) {
ss >> f;
ss.get();
}
return f;
}
///
/**
\param rString std::string reference to convert to int.
\return An int.
*/
int
jcs::stoi(const std::string& rString)
{
int value;
//std::istringstream(rString) >> value;
std::string tmp_string = rString;
tmp_string.erase(0, tmp_string.find_first_not_of(' '));
std::stringstream ss;
ss << tmp_string;
ss >> value;
return value;
}
///
/**
*/
int
jcs::stoi(const std::string& rString, int n)
{
std::stringstream ss;
ss << rString;
int f;
for (int i = 0; i <= n; ++i) {
ss >> f;
ss.get();
}
return f;
}
///
/**
*/
std::string
jcs::itos(const int i, int width)
{
std::stringstream ss;
ss.fill('0');
ss.width(width);
ss << i;
std::string s;
ss >> s;
return s;
}
///
/**
*/
std::string
jcs::ftos(const double f)
{
std::stringstream ss;
ss << f;
std::string str;
ss >> str;
return str;
}
///
/**
*/
std::string
jcs::ftos(const double f, int precision)
{
// c++ 11 and up only
// f = round(f*pow(10.0,precision))/pow(10.0,precision);
double df = ceil( (f*pow(10.0, precision)) - 0.49 ) / pow(10.0, precision);
std::stringstream ss;
ss << df;
std::string str;
ss >> str;
return str;
}
///
/**
*/
std::string
jcs::Date(const std::string& date)
{
std::string retval = date;
if (date.size() > 6) {
std::string newdate;
newdate.reserve(10);
newdate.append(date.begin() + 4, date.begin() + 6);
newdate.append("/");
newdate.append(date.begin() + 6, date.end());
newdate.append("/");
newdate.append(date.begin(), date.begin() + 4);
return newdate;
}
else {
return date;
}
}
///
/**
*/
std::string
jcs::RemoveInvalidChars(const std::string& name)
{
const std::string forbidden("\\/:*?\"<>|;, .#^");
// this initialization will drop any NULL terminator
std::string new_name(name.c_str());
std::replace_if(
new_name.begin(),
new_name.end(),
std::bind2nd(member_of<char>(), forbidden),
'_');
// remove trailing underscores
std::string::size_type length = new_name.find_last_not_of('_');
if (length != std::string::npos) {
length += 1;
new_name.resize(length);
}
return new_name;
}
///
/**
*/
std::vector<std::string>
jcs::ParseDicomString(const std::string& str)
{
std::vector<std::string> v;
std::string::size_type pos1 = 0;
std::string::size_type pos2 = str.find_first_of('/');
v.push_back(str.substr(0, pos2));
while (pos2 != std::string::npos) {
pos1 = pos2 + 1;
pos2 = str.find_first_of('/', pos1);
if (pos2 != std::string::npos) {
int nchars = pos2 - pos1;
v.push_back(str.substr(pos1, nchars));
}
else {
v.push_back(str.substr(pos1));
}
}
return v;
}
|