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).
if I have many string like this: "hello250" "dog256454" "boy14" and etc... but the concept is always string->int how can I get the last char before the number- integer?
@RuWex
QString::indexOf(QRegularExpression("m[0-9]"))
The last character before the digit is the index minus 1.