Click here to Skip to main content
15,881,803 members
Articles / General Programming / Algorithms
Alternative
Article

From one number system to another

Rate me:
Please Sign up or sign in to vote.
4.80/5 (8 votes)
10 May 2012CPOL 15K   5   1
This is an alternative for "From one number system to another"

As mentioned in my comment to the original, this code was written in response to a thread about how best to do this -- I think the thread was in the Lounge, but it may have been in the C# forum.

First you need to have a set of digits, the following is my prefered set of digits for bases up to 64 -- the user may provide a different set as needs require.

C#
namespace PIEBALD.Lib
{
    public static partial class LibStr
    {
        /* Digits used for string representations of numeric values */
        public const string Digits 
          = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_$" ;
    }
}

Then you need to convert the existing string to a number (I chose to use a long, but your needs may differ):

C#
public static long
StringToLong
(
    string Subject
,
    int    Base
,
    string Digits
)
{
    if ( Subject == null )
    {
        throw ( new System.ArgumentNullException
        (
            "Subject"
        ,
            "Subject must not be null"
        ) ) ;
    }

    if ( Base < 2 )
    {
        throw ( new System.ArgumentException
        (
            "Base must not be less than 2"
        ,
            "Base"
        ) ) ;
    }

    if ( Digits == null )
    {
        Digits = LibStr.Digits ;
    }

    if ( Digits.Length < Base )
    {
        throw ( new System.ArgumentException
        (
            "Not enough Digits were provided for the Base"
        ,
            "Digits"
        ) ) ;
    }

    long result = 0 ;
    int  sign   = 0 ;
    int  offset ;

    string DIGITS = Digits.ToUpper() ;

    foreach ( char ch in Subject )
    {
        offset = Digits.IndexOf ( ch ) ;

        if ( ( offset == -1 ) || ( offset >= Base ) )
        {
            offset = DIGITS.IndexOf ( char.ToUpper ( ch ) ) ;
        }

        if ( ( offset != -1 ) && ( offset < Base ) )
        {
            result = result * Base + offset ;

            if ( sign == 0 )
            {
                sign = 1 ;
            }
        }
        else
        {
            if ( ( sign == 0 ) && ( ch == '-' ) )
            {
                sign = -1 ;
            }
        }
    }

    return ( result * sign ) ;
}

Then you can convert back to a string, in a different base or with a different set of characters.

C#
public static string
LongToString
(
    long   Subject
,
    int    Base
,
    string Digits
)
{
    if ( Base < 2 )
    {
        throw ( new System.ArgumentException
        (
            "Base must not be less than 2"
        ,
            "Base"
        ) ) ;
    }

    if ( Digits == null )
    {
        Digits = PIEBALD.Lib.LibStr.Digits ;
    }

    if ( Digits.Length < Base )
    {
        throw ( new System.ArgumentException
        (
            "Not enough Digits were provided for the Base"
        ,
            "Digits"
        ) ) ;
    }

    System.Text.StringBuilder result = new System.Text.StringBuilder() ;

    int sign = 1 ;

    if ( Subject < 0 )
    {
        Subject *= sign = -1 ;
    }

    do
    {
        result.Insert ( 0 , Digits [ (int) ( Subject % Base ) ] ) ;

        Subject /= Base ;
    }
    while ( Subject > 0 ) ;

    if ( sign == -1 )
    {
        result.Insert ( 0 , '-' ) ;
    }

    return ( result.ToString() ) ;
}

I also have overloads for these methods that allow the caller to specify only the value or only the value and base -- in C# 4, this could be done with optional parameters. I just noticed that the code assumes that uppercase digits are lower than lowercase digits. If you then want to add separators, that should be done in another method and probably honor cultural differences.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
BSCS 1992 Wentworth Institute of Technology

Originally from the Boston (MA) area. Lived in SoCal for a while. Now in the Phoenix (AZ) area.

OpenVMS enthusiast, ISO 8601 evangelist, photographer, opinionated SOB, acknowledged pedant and contrarian

---------------

"I would be looking for better tekkies, too. Yours are broken." -- Paul Pedant

"Using fewer technologies is better than using more." -- Rico Mariani

"Good code is its own best documentation. As you’re about to add a comment, ask yourself, ‘How can I improve the code so that this comment isn’t needed?’" -- Steve McConnell

"Every time you write a comment, you should grimace and feel the failure of your ability of expression." -- Unknown

"If you need help knowing what to think, let me know and I'll tell you." -- Jeffrey Snover [MSFT]

"Typing is no substitute for thinking." -- R.W. Hamming

"I find it appalling that you can become a programmer with less training than it takes to become a plumber." -- Bjarne Stroustrup

ZagNut’s Law: Arrogance is inversely proportional to ability.

"Well blow me sideways with a plastic marionette. I've just learned something new - and if I could award you a 100 for that post I would. Way to go you keyboard lovegod you." -- Pete O'Hanlon

"linq'ish" sounds like "inept" in German -- Andreas Gieriet

"Things would be different if I ran the zoo." -- Dr. Seuss

"Wrong is evil, and it must be defeated." –- Jeff Ello

"A good designer must rely on experience, on precise, logical thinking, and on pedantic exactness." -- Nigel Shaw

“It’s always easier to do it the hard way.” -- Blackhart

“If Unix wasn’t so bad that you can’t give it away, Bill Gates would never have succeeded in selling Windows.” -- Blackhart

"Use vertical and horizontal whitespace generously. Generally, all binary operators except '.' and '->' should be separated from their operands by blanks."

"Omit needless local variables." -- Strunk... had he taught programming

Comments and Discussions

 
-- No messages could be retrieved (timeout) --