What do you guys/gals think would be the best way to remove leading zeros from a QString?
I am dealing with numbers like:
099900000002
008800000031
88800000043
Do I have to iterate over every character, one at a time, or is there a more elegant way using the QString::replace() function that I haven't thought of?