I have a string 0023525631 but what I want is the string 23525631 -- without the leading zeroes. How do I do this?
|
|
||||
|
|
You can convert string to integer and integer to string if you are number. Or Declarate pointer to this string and set this pointer to a start of your string, then iterate your string and add to this pointer number of zeros on the start of string. Then you have pointer to string who starting before zeros, you must use pointer to obitain string without zeros, if you use string you can get string with zeros. Or You can reverse string, and iterate it from reverse, if you get some |
|||||||||||||
|
|
This is exactly the kind of thing NSNumberFormatter is made for (and it's way better at it). Why reinvent the wheel? |
|||||||||||
|
|
I'm assuming here that you only want to remove the leading zeros. I.E. @"*00*1234*0*56" becomes @"1234*0*56", not @"123457". To do that, I'd use an NSScanner.
|
|||
|
You can use this:
|
||||
|
|
|
You can use:
|
|||||||||||
|