问题 - >将固定长度字符串返回到std :: string *。
目标机器 - > Fedora 11。
我必须派生一个接受整数值并将固定长度字符串返回到字符串指针的函数;
例如 - > int值的范围为0到-127
因此对于int值0 - >它应该显示000
对于值-9 - >它应该返回-009
值为-50 - >它应该返回-050
值为-110 - >它应该返回-110
所以简而言之,长度应该在所有情况下都相同。
我做了什么:我已根据下面的要求定义了该功能。
我需要帮助的地方:我已经派生了一个函数,但我不确定这是否是正确的方法。当我在Windows端的独立系统上测试它时,exe有时会停止工作,但是当我在Linux机器上包含这个功能和整个项目时,它可以完美地工作。
/* function(s)to implement fixed Length Rssi */
std::string convertString( const int numberRssi, std::string addedPrecison="" )
{
const std::string delimiter = "-";
stringstream ss;
ss << numberRssi ;
std::string tempString = ss.str();
std::string::size_type found = tempString.find( delimiter );
if( found == std::string::npos )// not found
{
tempString = "000";
}
else
{
tempString = tempString.substr( found+1 );
tempString = "-" +addedPrecison+tempString ;
}
return tempString;
}
std::string stringFixedLenght( const int number )
{
std::string str;
if( (number <= 0) && (number >= -9) )
{
str = convertString( number, "00");
}
else if( (number <= -10) && (number >= -99) )
{
str = convertString( number, "0");
}
else
{
str= convertString(number, "");
}
return str;
}
// somewhere in the project calling the function
ErrorCode A::GetNowString( std::string macAddress, std::string *pString )
{
ErrorCode result = ok;
int lvalue;
//some more code like iopening file and reading file
//..bla
// ..bla
// already got the value in lvalue ;
if( result == ok )
{
*pString = stringFixedLenght( lValue );
}
// some more code
return result;
}
答案 0 :(得分:13)
您可以使用I/O manipulators设置所需的宽度,并填充零。例如,此程序打印00123
:
#include <iostream>
#include <iomanip>
using namespace std;
int main() {
cout << setfill('0') << setw(5) << 123 << endl;
return 0;
}
您必须自己处理否定值:cout << setfill('0') << setw(5) << -123 << endl
打印0-123
,而不是-0123
。检查值是否为负值,将宽度设置为N-1
,并在前面添加减号。
答案 1 :(得分:10)
如何使用std::ostringstream
和标准输出格式化操纵器?
std::string makeFixedLength(const int i, const int length)
{
std::ostringstream ostr;
if (i < 0)
ostr << '-';
ostr << std::setfill('0') << std::setw(length) << (i < 0 ? -i : i);
return ostr.str();
}
答案 2 :(得分:2)
请注意,您的示例与您的描述相矛盾:如果值为-9,
固定长度为3,如果输出为“-009”(如您所知)
例如)或“-09”(如你所描述的)?如果是前者,则显而易见
解决方案是只使用std::ostringstream
上的格式化标记:
std::string
fixedWidth( int value, int width )
{
std::ostringstream results;
results.fill( '0' );
results.setf( std::ios_base::internal, std::ios_base::adjustfield );
results << std::setw( value < 0 ? width + 1 : width ) << value;
return results.str();
}
对于后者,只需将条件放在std::setw
中,然后传递即可
width
。
为了记录,虽然我会避免,但这是极少数情况之一
其中printf
比ostream
做得更好。使用snprintf
:
std::string
fixedWidth( int value, int width )
{
char buffer[100];
snprintf( buffer, sizeof(buffer), "%.*d", width, value );
return buffer;
}
您可能想要捕获snprintf
的返回值并添加
之后的一些错误处理,以防万一(但是char
是100
足以满足大多数现有机器的需要。)
答案 3 :(得分:0)
#include <cstdlib>
#include <string>
template <typename T>
std::string meh (T x)
{
const char* sign = x < 0 ? "-" : "";
const auto mag = std::abs (x);
if (mag < 10) return sign + std::string ("00" + std::to_string(mag));
if (mag < 100) return sign + std::string ("0" + std::to_string(mag));
return std::to_string(x);
}
#include <iostream>
int main () {
std::cout << meh(4) << ' '
<< meh(40) << ' '
<< meh(400) << ' '
<< meh(4000) << '\n';
std::cout << meh(-4) << ' '
<< meh(-40) << ' '
<< meh(-400) << ' '
<< meh(-4000) << '\n';
}
004 040 400 4000
-004 -040 -400 -4000
答案 4 :(得分:0)
我对使用流的版本没有任何反对意见,但您可以比代码更简单地完成所有操作:
std::string fixedLength(int value, int digits = 3) {
unsigned int uvalue = value;
if (value < 0) {
uvalue = -uvalue;
}
std::string result;
while (digits-- > 0) {
result += ('0' + uvalue % 10);
uvalue /= 10;
}
if (value < 0) {
result += '-';
}
std::reverse(result.begin(), result.end());
return result;
}