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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T23:20:04+00:00 2026-05-27T23:20:04+00:00

I have a hash like {:key1 => value1, :key2 => value2} And I have

  • 0

I have a hash like

{:key1 => "value1", :key2 => "value2"}

And I have a variable k which will have the value as 'key1' or 'key2'.

I want to get the value of k into a variable v.

Is there any way to achieve this with out using if or case? A single line solution is preferred. Please help.

  • 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-27T23:20:04+00:00Added an answer on May 27, 2026 at 11:20 pm

    Convert the key from a string to a symbol, and do a lookup in the hash.

    hash = {:key1 => "value1", :key2 => "value2"}
    k = 'key1'
    
    hash[k.to_sym] # or iow, hash[:key1], which will return "value1"
    

    Rails uses this class called HashWithIndifferentAccess that proves to be very useful in such cases. I know that you’ve only tagged your question with Ruby, but you could steal the implementation of this class from Rails’ source to avoid string to symbol and symbol to string conversions throughout your codebase. It makes the value accessible by using a symbol or a string as a key.

    hash = HashWithIndifferentAccess.new({:key1 => "value1", :key2 => "value2"})
    hash[:key1]  # "value1"
    hash['key1'] # "value1"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a hash with some key/value pairs my %hash = ('key1','value1', 'key2', 'value2');
In Perl if I want to have a multi-layered hash, I would write: $hash_ref->{'key1'}->{'key2'}='value';
I have a string which looks like a hash: { :key_a => { :key_1a
What I can think of is: Algo: Have a hash table which will store
In perl, I have a hash that looks like the following: $hash{key1}->{a} = 1;
Assume I have a muti-level hash: $class->{'key1'}->{'key2'}->{$key3}->{'string'}->{$key5}, where $class->{'key1'}->{'key2'}->{$key3}->{'string'}->{$key5} equals to some integer number.
I have a hash of the following format { '1234' => {key1=>1234,key2=>sdfsdf,key3=>sdfsdfs}, '234' =>
Let us say if I have a hash like this: $data = { 'key1'
I have hash(Hash.from_xml) which looks like this (from inspect): { FileName=>hofplayers.xml, Version=>1.0, UserID=>3955847, FetchedDate=>2011-08-16
I have Hash like this, representing a data tree hash = { 'key1' =>

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.