I have a QString in my sources. So I need to convert it to integer without \"Kb\".
QString
I tried Abcd.toInt() but it does not work
Abcd.toInt()
On the comments:
sscanf(Abcd, "%f %s", &f,&s);
Gives an Error.
This is the right way:
sscanf(Abcd, "%f %s", &f,qPrintable(s));