说我有这个:
QString mystring = "67 49 213 59";
int a, b, c, d;
是否有 Qt 替代 sscanf 以便我可以将数字读入int
变量?
QTextStream
提供标准库的流的等价物。不要忘记文本流应该在字符串之前被销毁。
QString mystring = "67 49 213 59";
QTextStream myteststream(&mystring);
int a = 0, b = 0, c = 0, d = 0;
myteststream >> a >> b >> c >> d;
int a, b, c, d;
QString s("67 49 213 59");
QTextStream(&s) >> a >> b >> c >> d;
QString str("67 49 213 59");
QStringList list = str.split(" ");
int a[list.count];
for (int i = 0; i < list.count; i++)
a[i] = list[i].toInt();
你总是可以做
QByteArray oString = mystring.toAscii();
const char *pszString = oString.constData();
然后正常使用 sscanf() 。