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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:35:40+00:00 2026-05-10T20:35:40+00:00

I am writing a script which is likely to be modified by users. Currently

  • 0

I am writing a script which is likely to be modified by users. Currently I am storing the configuration settings inside the script. It exists in the form of a hash-of-hashes.

I would like to guard against people accidentally using lowercase characters in the hash keys, because that will break my script.

It would be simple to inspect the hash keys and merely issue warnings for any keys with lowercase characters, but I would rather fix the case sensitivity automatically.

In other words, I want to convert all the hash keys in the top-level hash to uppercase.

  • 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. 2026-05-10T20:35:40+00:00Added an answer on May 10, 2026 at 8:35 pm

    Andy’s answer is a good answer, except he ucs every key, and then ucs it again if it doesn’t match.

    This ucs it once:

    %hash = map { uc $_ => $hash{$_} } keys %hash; 

    But since you spoke of users storing keys, a tie is a much more sure way, even if slower.

    package UCaseHash; require Tie::Hash;  our @ISA = qw<Tie::StdHash>;  sub FETCH {      my ( $self, $key ) = @_;     return $self->{ uc $key }; }  sub STORE {      my ( $self, $key, $value ) = @_;     $self->{ uc $key } = $value; }  1; 

    And then in main:

    tie my %hash, 'UCaseHash';  

    That’s a show. The tie ‘magic’ encapsulates it, so the users can’t unknowingly mess with it.

    Of course, as long as you’re using a ‘class’, you can pass in the config file name and initialize it from there:

    package UCaseHash; use Tie::Hash; use Carp qw<croak>;  ...  sub TIEHASH {      my ( $class_name, $config_file_path ) = @_;     my $self = $class_name->SUPER::TIEHASH;     open my $fh, '<', $config_file_path          or croak 'Could not open config file $config_file_path!'         ;     my %phash = _process_config_lines( <$fh> );     close $fh;     $self->STORE( $_, $phash{$_} ) foreach keys %phash;     return $self; } 

    Where you would have to call it like:

    tie my %hash, 'UCaseHash', CONFIG_FILE_PATH; 

    …assuming some constant CONFIG_FILE_PATH.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer Yes, you can do this but it's not the way… May 11, 2026 at 1:33 pm
  • added an answer Things like computing the full call stack at the exception… May 11, 2026 at 1:33 pm
  • added an answer Try just let joined = join(split(flist)) exec 'TlistAddFiles '.joined To… May 11, 2026 at 1:33 pm

Related Questions

No related questions found

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.