English 中文(简体)
我如何将扼杀分解成具有不可否认价值的关键?
原标题:How to do I split a string into hash keys with undef values?
  • 时间:2011-11-22 07:51:16
  •  标签:
  • perl

Here s my string:
NANA TEKA KAOE FLASK LSKK

How do I make it so that it ll look like this:
HASH = {NANA => undef, TEKA => undef, KAOE => undef, ...

Of course I could always split this into an array first
then loop through each value then assign them as hash
keys... but If there s a shorter/simpler way to do that?

提前感谢!

最佳回答

@hash{ di /s+/,$string } = (

问题回答

You can split the string and use a map to generate the output hash.

my $string = "NANA TEKA KAOE FLASK LSKK";
my %hash = map { $_ => undef } split(/s/, $string);

我怀疑这是否是最简明的方法,但似乎可以做到:

use warnings;
use strict;

my $string = "NAN TEKA KAOE FLASK LSKK";
my %hash = map { ($_ => undef) } split /s+/, $string;

foreach my $key (keys %hash)
{
    printf "$key => %s
", (defined($hash{$key})) ? $hash{$key} : "undef";
}




相关问题
Why does my chdir to a filehandle not work in Perl?

When I try a "chdir" with a filehandle as argument, "chdir" returns 0 and a pwd returns still the same directory. Should that be so? I tried this, because in the documentation to chdir I found: "...

How do I use GetOptions to get the default argument?

I ve read the doc for GetOptions but I can t seem to find what I need... (maybe I am blind) What I want to do is to parse command line like this myperlscript.pl -mode [sth] [inputfile] I can use ...

Object-Oriented Perl constructor syntax and named parameters

I m a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot. package Foo; #In Perl, the constructor is just a subroutine called new. sub new { #I ...

Where can I find object-oriented Perl tutorials? [closed]

A Google search yields a number of results - but which ones are the best? The Perl site appears to contain two - perlboot and perltoot. I m reading these now, but what else is out there? Note: I ve ...

热门标签