For example I have "$100" and "$50" in two strings, I want to add them to get an output "$150". I know the general method(converting them into integers and adding them), but i am searching for a shorter method which does not call many functions
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You can use an NSNumberFormatter to parse the string into a NSNumber, Sum them and then convert back to String :
|
|||
|
|
or use NSScanner, but it will be little longer, but more reliably/safely:
|
||||
|
|
|
I think you better store the price at CGfloat instead. showing a string "$100" is a front-end task and calculating the sum of the prices are back end task. These two should be seperated. If you store the price as a CGFloat, you can simply do the maths. And when you wanna show that string, juz implement a method.
Besides, don't be afraid of making a Front-end Helper model when you code. I put all this kind of minor method in this model as a class method. Wherever you need reuse this method, you can simply import the model. |
|||
|
