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

  • Home
  • SEARCH
  • 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 6381581
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:24:44+00:00 2026-05-25T02:24:44+00:00

Possible Duplicate: How do I create a hash of hashes in Perl? I need

  • 0

Possible Duplicate:
How do I create a hash of hashes in Perl?

I need to create something which is an equivalent of map : name(string) to map date(string/int) to value, i.e. a map { string => map { string => value } } .
How should i go about it in perl ?
The following code does not work.

my %strtomap_;
# given $str_, $date_, $val_
if ( ! exists $strtomap_ { $str_ } )
{
 my %new_map_date_to_val_ ;
 $new_map_date_to_val_{$date_} = $val_;
 $strtomap_ { $str_ } = %new_map_date_to_val_ ;
}
else
{
 $strtomap_ { $str_ } { $date_ } = $val_;
}
  • 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-25T02:24:44+00:00Added an answer on May 25, 2026 at 2:24 am

    Values of aggregate types (hashes and arrays) can only be scalars, not other aggregate types. So if you are going to explicitly use something like your %new_map_date_to_val_, you need to store a reference to it instead:

    my %new_map_date_to_val;
    $new_map_date_to_val_ { $date_ } = $val_;
    $strtomap_ { $str_ } = \%new_map_date_to_val_;
    

    though you can use an anonymous hash instead:

    $strtomap_ { $str_ } = { $date_ => $val _ };
    

    And in fact, the whole exists test is not needed, since simply dereferencing an undefined value in this kind of way will autovivify a hash reference for you. Your whole code can just be:

    my %strtomap_;
    $strtomap_ { $str_ } { $date_ } = $val_;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Grouping WHERE clauses with Zend_Db_Table_Abstract I need to create something like this:
Possible Duplicate: create multiple variables based on an int count Objective C Equivalent of
Possible Duplicate: Create a date with T-SQL I've a data table that stores each
Possible Duplicate: How to create a GUID / UUID in Javascript? I need to
Duplicate: Confused about hashes How can SHA encryption create unique 40 character hash for
Is it possible to create a hash in Ruby that allows duplicate keys? I'm
Possible Duplicate: How can I create a UIColor from a hex string? I want
Possible Duplicate: Global int variable objective c I would like to create a global
Possible Duplicate: How do I create a HashCode in .net (c#) for a string
Possible Duplicate: How do you create a Perl module? I have the script that

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.