std :: lexical_cast - 有这样的事吗?

时间:2011-11-09 13:01:34

标签: c++ parsing casting std c++-standard-library

C ++标准库是否定义了此函数,还是必须使用Boost?

我搜索了网络,除了Boost之外找不到任何东西,但我想我最好问这里。

5 个答案:

答案 0 :(得分:84)

仅部分。

C ++ 11 <string>对于内置类型有std::to_string

  

[n3290: 21.5/7]:

string to_string(int val);
string to_string(unsigned val);
string to_string(long val);
string to_string(unsigned long val);
string to_string(long long val);
string to_string(unsigned long long val);
string to_string(float val);
string to_string(double val);
string to_string(long double val);
     

返回:每个函数返回一个持有的string对象   它的参数值的字符表示   通过使用格式调用sprintf(buf, fmt, val)生成   "%d""%u""%ld""%lu""%lld""%llu"的说明符,   "%f"指定的"%f""%Lf"buf分别为[n3290: 21.5/1, 21.5/4]:   一个足够大小的内部字符缓冲区。

另外还有以下方法:

  

int stoi(const string& str, size_t *idx = 0, int base = 10); long stol(const string& str, size_t *idx = 0, int base = 10); unsigned long stoul(const string& str, size_t *idx = 0, int base = 10); long long stoll(const string& str, size_t *idx = 0, int base = 10); unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10); float stof(const string& str, size_t *idx = 0); double stod(const string& str, size_t *idx = 0); long double stold(const string& str, size_t *idx = 0);

{{1}}

但是,你可以使用任何通用的东西(至少not until TR2,也许!),在C ++ 03中什么都没有。

答案 1 :(得分:18)

不,不是,即使在C ++ 11中,但它是技术报告2中的proposed for inclusion,是下一组标准库扩展。

答案 2 :(得分:12)

没有std :: lexical_cast,但你总是可以用stringstreams做类似的事情:

template <typename T>
T lexical_cast(const std::string& str)
{
    T var;
    std::istringstream iss;
    iss.str(str);
    iss >> var;
    // deal with any error bits that may have been set on the stream
    return var;
}

答案 3 :(得分:5)

不,这只是纯粹的Boost事物。

答案 4 :(得分:4)

如果您不想要提升,那么名为fmt的轻量级库会实现以下功能:

// Works with all the C++11 features and AFAIK faster then boost or standard c++11
std::string string_num = fmt::format_int(123456789).str(); // or .c_str()

来自official page的更多示例。

按位置访问参数:

format("{0}, {1}, {2}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{}, {}, {}", 'a', 'b', 'c');
// Result: "a, b, c"
format("{2}, {1}, {0}", 'a', 'b', 'c');
// Result: "c, b, a"
format("{0}{1}{0}", "abra", "cad");  // arguments' indices can be repeated
// Result: "abracadabra"

对齐文本并指定宽度:

format("{:<30}", "left aligned");
// Result: "left aligned                  "
format("{:>30}", "right aligned");
// Result: "                 right aligned"
format("{:^30}", "centered");
// Result: "           centered           "
format("{:*^30}", "centered");  // use '*' as a fill char
// Result: "***********centered***********"

更换%+ f,% - f和%f并指定符号:

format("{:+f}; {:+f}", 3.14, -3.14);  // show it always
// Result: "+3.140000; -3.140000"
format("{: f}; {: f}", 3.14, -3.14);  // show a space for positive numbers
// Result: " 3.140000; -3.140000"
format("{:-f}; {:-f}", 3.14, -3.14);  // show only the minus -- same as '{:f}; {:f}'
// Result: "3.140000; -3.140000"

替换%x和%o并将值转换为不同的碱基:

format("int: {0:d};  hex: {0:x};  oct: {0:o}; bin: {0:b}", 42);
// Result: "int: 42;  hex: 2a;  oct: 52; bin: 101010"
// with 0x or 0 or 0b as prefix:
format("int: {0:d};  hex: {0:#x};  oct: {0:#o};  bin: {0:#b}", 42);
// Result: "int: 42;  hex: 0x2a;  oct: 052;  bin: 0b101010"