【Perl读书笔记】数组操作splice函数

读 《C程序员精通Perl》http://book.douban.com/subject/1232075/   3.3节 笔记





#!/usr/bin/perl

use strict;
use warnings;

my @array = (); 


while (1) {
        print "input a number or <enter> to finish: ";
        my $a=<STDIN>;
        chomp ($a);

        if ($a eq "") {
                last;   
        }   

        push(@array, $a);
}

print "array=@array\n\n";

my @result = splice(@array, 6); 
print "after splice1 array=@array\n";
print "result = @result\n\n";

@result = splice(@array, 3, 2); 
print "after splice2 array=@array\n";
print "result = @result\n\n";

@result = splice(@array, 3, 0, "hello", "calf_man");
print "after splice3 array=@array\n";
print "result = @result\n\n";

@result = splice(@array, 3, 1, "wonderful", "honey", "cute");
print "after splice4 array=@array\n";
print "result = @result\n\n";


运行结果:

[root@localhost perl_practice]# ./splice.pl   
input a number or <enter> to finish: 1
input a number or <enter> to finish: 2
input a number or <enter> to finish: 3
input a number or <enter> to finish: 4
input a number or <enter> to finish: 5
input a number or <enter> to finish: 6
input a number or <enter> to finish: 7
input a number or <enter> to finish: 8
input a number or <enter> to finish: 9
input a number or <enter> to finish:
array=1 2 3 4 5 6 7 8 9

after splice1 array=1 2 3 4 5 6
result = 7 8 9

after splice2 array=1 2 3 6
result = 4 5

after splice3 array=1 2 3 hello calf_man 6
result =

after splice4 array=1 2 3 wonderful honey cute calf_man 6
result = hello

[root@localhost perl_practice]#


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值