perl的数组操作

[list]
[*][b]生成连续的一列数字或字母:[/b]

my @numbers = (1..100);
my @chars = (a..z);


[*][b]添加或者删除元素[/b]

shift: 移除数组的第一个元素;
unshift: 添加一个元素到数组的最后;
push: 添加一个元素到数组的第一个元素;
pop:去除数组的最后一个元素。

[table]
|Functio|Definition|
|push(@array, Element)| Adds to the end of an array|
|pop(@array)|Removes the last element of the array|
|unshift(@array, Element)|Adds to the beginning of an array|
|shift(@array)| Removes the first element of an array|
|delete $array[index]| Removes an element by index number|
[/table]

[*] [b]截取数组片断[/b]

my @a=(1..10);
my @b=@a[1..4, 8..10]; # @b = (2,3,4,5,9,10)
my @c=@a[1,9]; # @c = (2,10)


[*] [b]添加删除元素
[/b]

splice(@array, offset, length, $elem)

my @a=(1..10);
splice(@a, 1, 0, 100) # @a=(1,100,2,3,4,5,6,7,8,9,10)
my @b=(1..10);
splice(@b, 1, 1, 99,100) # @b=(1,99,100,3,4,5,6,7,8,9,10)


[/list]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值