vote up 0 vote down star

(iPhone question) My code looks like this

NSNumber *inputToNumber = [NSNumber numberWithFloat:[textField.text floatValue]];

the value from the textfield is actually a telephone number. It's stored in NSNumber as an annoying (2.0)78966e+08

How can I just get NSNumber to store it as 0207896608?

Thanks

dan

flag

67% accept rate

8 Answers

vote up 1 vote down check

Scientific notation is used in may computer languages as the default output of very large (or very small) numbers. If you want the number to be output as a decimal, you need to specify the output format (the implementation varies by language.)

Also, julesjacobs is correct. You should not use FLOAT for a phone number as it is subject to binary rounding errors. Using INT or STRING will save you lots of headaches.

link|flag
No, you can’t use an int. Phone numbers may begin with zero, and can contain semantically meaningful non-digits such as # or *. Unless you’re really, really sure you know what’s a valid phone number, don’t go making assumptions about it. (This goes for many types of input validation.) – Ahruman Jan 5 at 22:52
I agree. I was referring to US telephone numbers as that's all I ever have to deal with. For international numbers and INT would not do. – Chris Nava Mar 10 at 19:29
vote up -6 vote down

Ah OK I got it:

NSNumber *inputToNumber = [NSNumber numberWithInt:(int)[textField.text floatValue]];

link|flag
Please don't put this sort of thing in answers, use comments like this instead. – Darron Jan 5 at 16:22
Why are you casting the textField.text to an int? Can't you just use intValue instead of floatValue? – Sean Jan 5 at 16:25
What Darron said - Stack Overflow is not a discussion forum. It is a Q&A site. Treat it that way, please. – Chris Hanson Jan 5 at 17:39
Comments require 50 karma, so at the moment, he can't post a comment. – Peter Hosey Jan 5 at 22:53
He can edit the question. – Dour High Arch Jan 5 at 23:04
show 1 more comment
vote up -3 vote down

Note that I don't any any experience with objective-c, but are you seriously storing a phone number in a float? You should consider using an integer or string. Perhaps:

NSNumber *inputToNumber = [NSNumber numberWithInt:[textField.text intValue]];
link|flag
And how do you represent ‘*’, ‘#’, or ‘,’ in that integer? – Peter Hosey Jan 6 at 0:07
vote up 23 vote down

I think that the basic idea to store a phone number into a NSNumber is flawed:

  • how do you discriminate between numbers with or without leading 0 ?
  • how do you store phone numbers from foreign countries ?

I would use NSString in place of NSNumber.

link|flag
vote up 0 vote down

If you need to be able to deal with it as numbers maybe you should break it up into its parts, and store each part as an integer.

01112223333
country code 0
area code 111
prefix 222
number 3333

Or you could store the whole thing as a string if you don't need to manipulate it.

link|flag
Phone numbers aren't in the same format in all countries. A single phone number may even look different in country B from what it looks like in country A. And even if you can figure out which chunks are which, what of ‘*’, ‘#’, and ‘,’? Integers still won't work. – Peter Hosey Jan 6 at 0:50
vote up -4 vote down

Hey Guys what do you think of this, It seems to full-fill my purposes. Only UK at the moment so will worry about localization when I get a chance.

I use this to get to store the number

NSNumber *inputToNumber = [NSNumber numberWithLongLong:(long long)[[textField.text stringByReplacingOccurrencesOfString:@" " withString:@""] longLongValue]];

And this method formats my telephone number and takes care of the preceeding 0 mentioned.

-(NSString *)phoneNumberString:(NSNumber *)phoneNumber {
    //Add a zero because NSNumber won't save a preceeding zero
    NSString *telephoneString = [[NSString alloc] initWithFormat:@"0%@", [phoneNumber stringValue]];

    if (telephoneString.length >= 4) {
        NSString *firstPart = [[NSString alloc] initWithString: [telephoneString substringToIndex:4]];
        NSString *secondPart = [[NSString alloc] initWithString: [telephoneString substringFromIndex:4]];

        //Add the two parts together with a space inbetween
        NSString *formattedTelephoneString = [NSString stringWithFormat:@"%@ %@", firstPart, secondPart];

        //send it back to the cellForRow TableCell Method
        [firstPart release];
        [secondPart release];
        [telephoneString release];

        return formattedTelephoneString;    
    }
    else {
        return telephoneString; 
    }
}

Thanks for all the comments. I'm gonna mark the answer as whoever suggested NSString as I fear I will revert to using NSString for this instead of my above workaround.

link|flag
your code is leaking memory. you should auto release telephoneString before returning it, or use the convenience method stringWithString instead of [[NSString alloc ] initWith..], that way you don't need to worry about releasing. – lajos Jan 5 at 17:51
What I meant about the preceeding 0 is that not all phone numbers have a preceeding 0 and with an integer value you have no way to code this (except if you use the minus sign for that purpose). – mouviciel Jan 5 at 20:56
vote up 8 vote down

Just because it's called a number doesn't mean a "telephone number" is a number in the same sense that "5" or "pi" are.

Either you should treat a telephone number as a string, or you should create a TelephoneNumber model class to represent each one.

link|flag
vote up 4 vote down

guys, consider that there are places in the world where numbers don't have leading 0's and where a number with a leading 0 is not the same as the same number without a leading 0.

05843924 != 5843924

so stop being lazy with that NSNumber hacks and build your own phone-number class.

link|flag

Your Answer

Get an OpenID
or

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