Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
any function allow me to extract partial qstring thats separated by space or comma etc? for example
qstring a="123,567,890" int a=123 int b=567; int c=890;
@s002wjh QString::split() comes to mind...
QString::split()
afterwards iterate over the QStringList and use QString::toInt().
QStringList
QString::toInt()
HTH