C++ alternative to sscanf()

梦想与她 提交于 2019-12-20 04:13:05

问题


I have the following function:

static void cmd_test(char *s)
 {
    int d = maxdepth;
    sscanf(s, "%*s%d", &d);
    root_search(d);
  }

How can I achieve the same output in a C++ way, rather than using sscanf?


回答1:


int d = maxdepth;
sscanf(s, "%*s%d", &d);

Reads a string (which does not store anywhere) and then reads a decimal integer. Using streams it would be:

std::string dont_care;
int d = maxdepth;

std::istringstream stream( s );
stream >> dont_care >> d;


来源:https://stackoverflow.com/questions/7883383/c-alternative-to-sscanf

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!