up vote 0 down vote favorite
1
share [g+] share [fb]

For the phone number: 234-567-8901, I would name variables like:

areaCode = "234";
exchange = "567";

What would an appropriate variable name be for "8901"?

link|improve this question

65% accept rate
2  
I shoot for Final four – TStamper Oct 27 '09 at 21:33
I think 'lineNumber' sounds best as a variable name. – kafuchau Oct 27 '09 at 21:37
feedback

7 Answers

Wikipedia calls it subscriber number.

link|improve this answer
feedback

Unless the software is to be used inside a telecommunications company (who would know the correct term), I would go for readability over technical correctness.

Since there is no consensus on the exact term or at least a commonly used name, I would choose something like "fourDigits" over a technically correct term "line number", "extension", "suffix", or "Subscriber line number (SLN)."

link|improve this answer
feedback

It is called the line number.

link|improve this answer
1  
Good name, but... Yahoo Answers? – deworde Oct 27 '09 at 21:43
feedback

I think the phone number segments are: area code, exchange, and extension. So, the third would be the extension.

This also has the last four digits referenced as the 'subscriber' number or 'station code'.

link|improve this answer
4  
But extension usually means something else... i.e. more numbers after the number answers, such as 234-567-8901 x234 – JoelFan Oct 27 '09 at 21:30
Extension usually refers to an exchange within a phone system, e.g. 555-5555 ext. 55 – Nick T Oct 27 '09 at 21:30
feedback

There is a large Wikipedia article (http://en.wikipedia.org/wiki/Phone%5Fnumber) that gives a lot of history but no clear term for this part of the number. It may, in some cases, be a subscriber number and in some cases an extension.

link|improve this answer
1  
"Extension" is technically correct but it would likely cause confusion since it has become a term more commonly associated with an intra-phone system extension number (i.e. 555-1212 x123). – Robert Cartaino Oct 27 '09 at 21:47
feedback

Depends on why you're doing it.

  • If it's just for you, you can call it "mysticdragonnohala", as long as you can remember it.
  • If it's to be memorable within a team project, check with the other developers who'll have to deal with it.
  • If it's client-facing, then check with whoever deals with the client the most.
  • If it's for a uni course, just make sure it makes sense (or funny) and that it's clearly commented.

Personally I'd go for "line". But "personal", "specific", "individual" "final" and "local" would all make sense.

link|improve this answer
feedback

I've always heard it referred to as the "suffix".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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