Converting a Byte Array to a String in Ruby

Featured image for sharing metadata for article

In Converting a Byte Array to String with Buffer in Node.JS I mentioned about Node.JS Buffers, and how they're a way to serialise an array of bytes into a JSON format.

As Ruby is my preferred scripting language, I wanted to document how to convert this back to a String with Ruby, too.

Let us assume that we have the following data:

[
  104, 116, 116, 112, 115,
  58, 47, 47, 119, 119,
  119, 46, 106, 118, 116,
  46, 109, 101
]

We can follow grosser's solution (bearing in mind David J's comment):

bytes = [
  104, 116, 116, 112, 115,
  58, 47, 47, 119, 119,
  119, 46, 106, 118, 116,
  46, 109, 101
]
puts bytes.pack('C*').force_encoding('UTF-8')
# 'https://www.jvt.me'

Written by Jamie Tanna's profile image Jamie Tanna on , and last updated on .

Content for this article is shared under the terms of the Creative Commons Attribution Non Commercial Share Alike 4.0 International, and code is shared under the Apache License 2.0.

#blogumentation #ruby.

This post was filed under articles.

Interactions with this post

Interactions with this post

Below you can find the interactions that this page has had using WebMention.

Have you written a response to this post? Let me know the URL:

Do you not have a website set up with WebMention capabilities? You can use Comment Parade.