how to do string conversions in objective c? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:51:03Zhttp://stackoverflow.com/feeds/question/169925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c12how to do string conversions in objective c?rksprst2008-10-04T07:36:01Z2009-06-06T19:38:01Z
<p>I want to convert a string into a double and after doing some math on it, convert it back to a string.</p>
<p>How do I do this in objective-c?</p>
<p>Is there a way to round a double to the nearest integer too?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/169932#16993213Answer by olliej for how to do string conversions in objective c?olliej2008-10-04T07:45:08Z2009-03-30T22:03:54Z<p>You can convert an NSString into a double with </p>
<pre><code>double myDouble = [myString doubleValue];
</code></pre>
<p>Rounding to the nearest int can then be done as</p>
<pre><code>int myInt = (int)(myDouble + (myDouble>0 ? 0.5 : -0.5))
</code></pre>
<p>I'm honestly not sure if there's a more streamlined way to convert back into a string than</p>
<pre><code>NSString* myNewString = [NSString stringWithFormat:@"%d", myInt];
</code></pre>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/169948#1699483Answer by Paul Dixon for how to do string conversions in objective c?Paul Dixon2008-10-04T07:57:15Z2008-10-04T07:57:15Z<p>olliej's <a href="http://en.wikipedia.org/wiki/Rounding" rel="nofollow">rounding</a> method is wrong for negative numbers</p>
<ul>
<li>2.4 rounded is 2 (olliej's method gets this right)</li>
<li>−2.4 rounded is −2 (olliej's method returns -1)</li>
</ul>
<p>Here's an alternative </p>
<pre><code> int myInt = (int)(myDouble + (myDouble>0 ? 0.5 : -0.5))
</code></pre>
<p>You could of course use a rounding function from math.h</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/169953#1699530Answer by olliej for how to do string conversions in objective c?olliej2008-10-04T08:05:32Z2008-10-04T08:05:32Z<p>Paul is correct, i am a moron -- i just always tend to be dealing with positive values. A more "correct" approach would probably actually be <code>round</code>, <code>lround</code>, or possibly <code>rint</code> -- but they don't exist on all platforms as far as I am aware. But then if you're using Obj-C you're probably on MacOS which does provide them.</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/170725#1707254Answer by Barry Wark for how to do string conversions in objective c?Barry Wark2008-10-04T17:37:55Z2008-10-04T17:37:55Z<p>Adding to olliej's answer, you can convert from an int back to a string with <code>NSNumber</code>'s <code>stringValue</code>:</p>
<pre><code>[[NSNumber numberWithInt:myInt] stringValue]
</code></pre>
<p><code>stringValue</code> on an <code>NSNumber</code> invokes <code>descriptionWithLocale:nil</code>, giving you a localized string representation of value. I'm not sure if <code>[NSString stringWithFormat:@"%d",myInt]</code> will give you a properly localized reprsentation of <code>myInt</code>.</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/170867#17086717Answer by Chris Hanson for how to do string conversions in objective c?Chris Hanson2008-10-04T19:10:32Z2008-10-04T19:10:32Z<p>To really convert from a string to a number properly, you need to use an instance of <a href="http://developer.apple.com/documentation/Cocoa/Reference/Foundation/Classes/NSNumberFormatter_Class/Reference/Reference.html" rel="nofollow"><code>NSNumberFormatter</code></a> configured for the locale from which you're reading the string.</p>
<p>Different locales will format numbers differently. For example, in some parts of the world, <code>COMMA</code> is used as a decimal separator while in others it is <code>PERIOD</code> — and the thousands separator (when used) is reversed. Except when it's a space. Or not present at all.</p>
<p>It really depends on the provenance of the input. The safest thing to do is configure an <code>NSNumberFormatter</code> for the way your input is formatted and use <code>-[NSFormatter numberFromString:]</code> to get an <code>NSNumber</code> from it. If you want to handle conversion errors, you can use <code>-[NSFormatter getObjectValue:forString:range:error:]</code> instead.</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/171486#1714861Answer by mmalc for how to do string conversions in objective c?mmalc2008-10-05T04:29:53Z2008-10-05T04:29:53Z<p>Further to Chris Hanson's answer, you can find out more about number formatters, their behaviour, and format strings, from <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DataFormatting/Articles/dfNumberFormatting10_4.html" rel="nofollow">NSNumberFormatter on Mac OS X 10.4</a> in <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/DataFormatting/DataFormatting.html" rel="nofollow">Data Formatting Programming Guide For Cocoa</a>.</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/173827#1738270Answer by Graham Lee for how to do string conversions in objective c?Graham Lee2008-10-06T10:33:35Z2008-10-06T10:33:35Z<p>Another way to extract numbers from a string is to use an NSScanner:
<a href="http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/Scanners.html#//apple_ref/doc/uid/20000147" rel="nofollow">http://developer.apple.com/documentation/Cocoa/Conceptual/Strings/Articles/Scanners.html#//apple_ref/doc/uid/20000147</a></p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/176275#1762751Answer by benzado for how to do string conversions in objective c?benzado2008-10-06T21:30:02Z2008-10-06T21:30:02Z<p>For rounding, you should probably use the C functions defined in math.h.</p>
<pre><code>int roundedX = round(x);
</code></pre>
<p>Hold down Option and double click on <code>round</code> in Xcode and it will show you the man page with various functions for rounding different types.</p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/287290#2872901Answer by jpm for how to do string conversions in objective c?jpm2008-11-13T15:43:59Z2008-11-13T15:43:59Z<p>Another source of information that might be useful to you is this article about NSNumberFormatter:</p>
<p><a href="http://www.iphonesdkarticles.com/2008/11/localizing-iphone-apps-part-1.html" rel="nofollow">http://www.iphonesdkarticles.com/2008/11/localizing-iphone-apps-part-1.html</a></p>
http://stackoverflow.com/questions/169925/how-to-do-string-conversions-in-objective-c/960368#9603680Answer by Sam Soffes for how to do string conversions in objective c?Sam Soffes2009-06-06T19:38:01Z2009-06-06T19:38:01Z<p>This is the easiest way I know of:</p>
<pre><code>float myFloat = 5.3;
NSInteger myInt = (NSInteger)myFloat;
</code></pre>