
21 Nov
2014
21 Nov
'14
9:58 a.m.
Hi Gerd
for SimpleStreetPhoneNumber are a bit confusing. I don't understand the (or A) in "If the string is not all numeric (or A) "
The code converts from base 11 to a string using a general routine so that it uses 0123456789A in the same way that hexadecimal uses 0123456789ABCDEF. Since that routine is not used elsewhere, we could make it specific to base 11 and replace String digit = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; with "0123456789-" ..Steve