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 6663543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:30:38+00:00 2026-05-26T02:30:38+00:00

What is the simplest way in C to convert an EBCDIC-encoded string to its

  • 0

What is the simplest way in C to convert an EBCDIC-encoded string to its ASCII equivalent in-place.

The only characters that need to be converted are the space, alphanumerics, and from the set <=>()+-*/&|!$#@.,;%_?". All other characters can simply be replaced with ..

The function signature will basically be:

void ebcdicToAscii (char *s);

At the moment, I’m leaning towards a series of lookup tables and multiple if statements for the various EBCDIC sections, but I wonder if there’s a better way.

  • 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-26T02:30:39+00:00Added an answer on May 26, 2026 at 2:30 am

    Using the table from here, from the top of my head:

    static const unsigned char e2a[256] = {
              0,  1,  2,  3,156,  9,134,127,151,141,142, 11, 12, 13, 14, 15,
             16, 17, 18, 19,157,133,  8,135, 24, 25,146,143, 28, 29, 30, 31,
            128,129,130,131,132, 10, 23, 27,136,137,138,139,140,  5,  6,  7,
            144,145, 22,147,148,149,150,  4,152,153,154,155, 20, 21,158, 26,
             32,160,161,162,163,164,165,166,167,168, 91, 46, 60, 40, 43, 33,
             38,169,170,171,172,173,174,175,176,177, 93, 36, 42, 41, 59, 94,
             45, 47,178,179,180,181,182,183,184,185,124, 44, 37, 95, 62, 63,
            186,187,188,189,190,191,192,193,194, 96, 58, 35, 64, 39, 61, 34,
            195, 97, 98, 99,100,101,102,103,104,105,196,197,198,199,200,201,
            202,106,107,108,109,110,111,112,113,114,203,204,205,206,207,208,
            209,126,115,116,117,118,119,120,121,122,210,211,212,213,214,215,
            216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,
            123, 65, 66, 67, 68, 69, 70, 71, 72, 73,232,233,234,235,236,237,
            125, 74, 75, 76, 77, 78, 79, 80, 81, 82,238,239,240,241,242,243,
             92,159, 83, 84, 85, 86, 87, 88, 89, 90,244,245,246,247,248,249,
             48, 49, 50, 51, 52, 53, 54, 55, 56, 57,250,251,252,253,254,255
    };
    
    void ebcdicToAscii (unsigned char *s)
    {
        while (*s)
        {
            *s = e2a[(int) (*s)];
            s++;
        }
    }
    

    For your specific requirements, I would suggest something like:

    #include <stdio.h>
    
    void inSituEbcdicToAscii (char *s) {
        static char etoa[] =
            "                                "
            "                                "
            "           .<(+|&         !$*); "  // first char here is real space
            "-/         ,%_>?         `:#@'=\""
            " abcdefghi       jklmnopqr      "
            "  stuvwxyz                      "
            " ABCDEFGHI       JKLMNOPQR      "
            "  STUVWXYZ      0123456789      ";
    
        while (*s != '\0') {
            *s = etoa[(unsigned char)*s];
            s++;
        }
    }
    
    int main (void) {
        char str[] = "\xc8\x85\x93\x93\x96\x40\xa3\x88\x85\x99\x85\x5a";
        inSituEbcdicToAscii (str);
        printf ("%s\n", str);
        return 0;
    }
    

    which outputs Hello there! from the equivalent EBCDIC characters. All other characters beyond those you showed an interest in are converted to a space, though you can change that to something else (make sure you don’t modify EBCDIC code 0x40 which is the real space).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have a string NEW. What is the SIMPLEST way to convert that
What is the simplest way to convert a string of keyword=values to a dictionary,
What is the correct/best/simplest way to convert a c-style string to a std::string. The
I was wondering what the simplest way is to convert a string representation of
I'm looking for the simplest way to convert a string containing valid XML into
What's the simplest way to convert a Unicode codepoint into a UTF-8 byte sequence
What would be the best way (ideally, simplest) to convert an int to a
What is the simplest way to convert a large Excel spreadsheet with multiple worksheets
What would be the simplest way to covert a Set<String> to an argument for
What is the simplest way to convert array to vector? void test(vector<int> _array) {

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.