第 3 章 Array, Hash

简介:

 
my @source = qw( title text1 text2 text3 text4 title text1 text2 text3 );

my $i = 0;
my @records = ();
foreach my $sour (@source)
{
    if ($sour eq 'title')
    {
        $records[$i] = { title => $sour };
        $i++;
    }
    else
    {
        push @{ $records[$i - 1]->{value} }, $sour;
    }
}

use Data::Dumper;
print Dumper \@records;
  
 





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
6月前
|
存储 机器学习/深度学习 JavaScript
array
array
35 2
|
6月前
|
Shell
|
存储 算法
|
存储 算法
hash
一.什么是hash 百度百科上的定义是: 是把任意长度的输入通过散列算法变换成固定长度的输出,该输出就是散列值。简单的说就是一种将任意长度的消息压缩到某一固定长度的消息摘要的函数。
103 0
|
前端开发 JavaScript
hash、chunkhash和contenthash
webpack 通用配置优化
125 0
hash、chunkhash和contenthash
4.1、Array数组常用的方法(map、push、sort、filter、join、split)
4.1、Array数组常用的方法(map、push、sort、filter、join、split)
142 0
HashMap遍历所有的key和value
HashMap遍历所有的key和value
461 0
|
存储 Linux C++
map和hash_map的区别
map和hash_map的区别
166 0