Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1017649
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:44:13+00:00 2026-05-16T10:44:13+00:00

I need to convert an integer into a base64-character representation. I’m using OxA3’s answer

  • 0

I need to convert an integer into a base64-character representation. I’m using OxA3’s answer on this thread: Quickest way to convert a base 10 number to any base in .NET?

How do I inverse this to get my original integer back, given a string?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:44:14+00:00Added an answer on May 16, 2026 at 10:44 am

    Joel Mueller’s answer should guide you the base-64 case.

    In response to the preliminary code you’ve provided in your own answer, you can definitely improve its efficiency by changing the code to accomplish what your for loop is doing (effectively an O(N) IndexOf) to use a hash lookup (which should make it O(1)).

    I am basing this on the assumption that baseChars is a field that you initialize in your class’s constructor. If this is correct, make the following adjustment:

    private Dictionary<char, int> baseChars;
    
    // I don't know what your class is called.
    public MultipleBaseNumberFormatter(IEnumerable<char> baseCharacters)
    {
        // check for baseCharacters != null and Count > 0
    
        baseChars = baseCharacters
            .Select((c, i) => new { Value = c, Index = i })
            .ToDictionary(x => x.Value, x => x.Index);
    }
    

    Then in your StringToInt method:

    char next = encodedString[currentChar];
    
    // No enumerating -- we've gone from O(N) to O(1)!
    if (!characterIndices.TryGetValue(next, out nextCharIndex))
    {
        throw new ArgumentException("Input includes illegal characters.");
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the need to convert a hex string into an integer using C#.
What I need to do is use integer arithmetic to convert fractions into floating
I need to convert an integer to it's ASCII representation from within the Linux
I need to convert integer value into hexadecimal. I have done with some logical,
I need to convert minutes (defined as Integer) into the following String format hh:mm
I want to convert an integer into its character equivalent based on the alphabet.
Is it possible to convert an UUID into a 128 bit integer using c++
I am writing this code to convert a hex entry into its integer equivalent.
I need to convert array of Objects into a Long/Integer.. Problem is that those
I need to convert integer value into char array on bit layer. Let's say

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.