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.

I'm trying to convert an NSString to a single char. When I write [[NSLocale] currentLocale] objectForKey:NSLocaleDecimalSeparator], I get @",". How can I convert this to ','?

Thank you!

share|improve this question

1 Answer

up vote 3 down vote accepted
unichar character = [myNSString characterAtIndex:0];
share|improve this answer
Note this is not a C char - as unicode might be more than one byte – Mark Aug 30 '09 at 21:05
Yeah............. note. – bobobobo Nov 1 '09 at 15:57
will be. its always 2 bytes ain't it. – bobobobo Nov 1 '09 at 16:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.