【Perl读书笔记】数组转换为行操作join函数

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




#!/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;   
        }   
        print "input $a\n";
        push(@array, $a);
}

print "array=@array\n";

my $line = join("\t", @array);

open JOIN_FILE, ">join.file" or die("Could not open join.file");

print JOIN_FILE $line;

close(JOIN_FILE);


运行结果:

[root@localhost perl_practice]# ./join.pl
input a number or <enter> to finish: 1
input 1
input a number or <enter> to finish: 2
input 2
input a number or <enter> to finish: 3
input 3
input a number or <enter> to finish: 4
input 4
input a number or <enter> to finish: 5
input 5
input a number or <enter> to finish:
array=1 2 3 4 5
[root@localhost perl_practice]# cat join.file
1       2       3       4       5[root@localhost perl_practice]#




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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值