由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 问一个perl的有关hash的问题
相关主题
perl array|hash question请教, Perl里面如何知道执行文件的名字?
perl question: can I have a key of hash to be请教双键的动态结构用什么数据结构比较好?
这个perl的简单小程序为什么不work? (转载)Perl question - use perl to read another html files and update new html files
perl的hash怎么用汉字做key啊perl 的问题
Perl:如何处理这种hash 结构,Call assembly in c++ under linux
perl oneliner hash疑问Interview questions about hash function
再 次 请 教 : 关 于 writing to a file 用 Perl for CGISTL map
a question of perlslack got hacked, 没一个安全的
相关话题的讨论汇总
话题: file话题: name话题: paris话题: hash话题: my
进入Programming版参与讨论
1 (共1页)
j***3
发帖数: 142
1
open FILE, $file
my %NAME = ();
while (my $line = ) {
my @a = split " ", $line;
my $location = $a[2];

$NAME{$a[1]."#".$location} .= $a[0]."#";

}
close FILE;
请问
$NAME{$a[1]."#".$location} .= $a[0]."#";
是什么意思啊?以前没有学过这样用hash的, 也google不到。
谢谢。
w******p
发帖数: 166
2
for input file:
100 A Paris
200 A Chicago
100 B Paris
300 A Chicago
100 B Paris
%Name becomes:
A#Paris ==> 100#
A#Chicago ==> 200#300#
B#Paris ==> 100#100#
the question is not how to use hash, but how to use string:
"." concats strings
".=" similar
j***3
发帖数: 142
3
thanks westcamp.
it makes sense now.
1 (共1页)
进入Programming版参与讨论
相关主题
slack got hacked, 没一个安全的Perl:如何处理这种hash 结构,
consistent hashing实际应用perl oneliner hash疑问
How to compile multiple c files into one obj file?再 次 请 教 : 关 于 writing to a file 用 Perl for CGI
error of opening a file located in a remote server from pyt (转载)a question of perl
perl array|hash question请教, Perl里面如何知道执行文件的名字?
perl question: can I have a key of hash to be请教双键的动态结构用什么数据结构比较好?
这个perl的简单小程序为什么不work? (转载)Perl question - use perl to read another html files and update new html files
perl的hash怎么用汉字做key啊perl 的问题
相关话题的讨论汇总
话题: file话题: name话题: paris话题: hash话题: my