get ruby hash key value using Erubis

178 Views Asked by At

I have a hash:

hash = "email_address"=>"[email protected]"

I would like to get the value from this hash which is "[email protected]" using erubis. This doesn't work:

<% 
pp hash.[email_address]
%>
1

There are 1 best solutions below

5
On

Did you try this?

<%= pp hash["email_address"] %>

or

<%= pp hash[:email_address] %>