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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T06:12:02+00:00 2026-05-15T06:12:02+00:00

Does Ruby have an equivalent to .NET’s Encoding.ASCII.GetString(byte[]) ? Encoding.ASCII.GetString(bytes[]) takes an array of

  • 0

Does Ruby have an equivalent to .NET’s Encoding.ASCII.GetString(byte[])?

Encoding.ASCII.GetString(bytes[]) takes an array of bytes and returns a string after decoding the bytes using the ASCII encoding.

  • 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-15T06:12:02+00:00Added an answer on May 15, 2026 at 6:12 am

    Assuming your data is in an array like so (each element is a byte, and further, from the description you posted, no larger than 127 in value, that is, a 7-bit ASCII character):

    array =[104, 101, 108, 108, 111]
    
    string = array.pack("c*") 
    

    After this, string will contain “hello”, which is what I believe you’re requesting.

    The pack method “Packs the contents of arr into a binary sequence according to the directives in the given template string”.

    “c*” asks the method to interpret each element of the array as a “char”. Use “C*” if you want to interpret them as unsigned chars.

    http://ruby-doc.org/core/classes/Array.html#M002222

    The example given in the documentation page uses the function to convert a string with Unicode characters. In Ruby I believe this is best done using Iconv:

    require "iconv"
    require "pp"
    
    #Ruby representation of unicode characters is different
    unicodeString = "This unicode string contains two characters " +
                    "with codes outside the ASCII code range, " +
                    "Pi (\342\x03\xa0) and Sigma (\342\x03\xa3).";
    
    #printing original string
    puts unicodeString 
    
    i = Iconv.new("ASCII//IGNORE","UTF-8")
    
    #Printing converted string, unicode characters stripped
    puts i.iconv(unicodeString)
    bytes = i.iconv(unicodeString).unpack("c*")
    #printing array of bytes of converted string
    pp bytes
    

    Read up on Ruby’s Iconv here.

    You might also want to check this question.

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

Sidebar

Ask A Question

Stats

  • Questions 417k
  • Answers 417k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Follow the link Yin Zhu posted to the IE9 Preview… May 15, 2026 at 9:33 am
  • Editorial Team
    Editorial Team added an answer The colt library has sparse matrices (1D, 2D and 3D).… May 15, 2026 at 9:33 am
  • Editorial Team
    Editorial Team added an answer Sorry I just noticed this; please make sure to bring… May 15, 2026 at 9:33 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.