码迷,mamicode.com
首页 > 其他好文 > 详细

Perl-由报表转命令(展讯2015)

时间:2020-03-29 21:04:06      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:while   fixed   div   报表   color   pre   图片   nbsp   代码   

1、原题

  技术图片

 

2、代码

open IN, <, File1.txt or die The file does not exist!;
open OUT, >, File2.txt or die The file does not exist!;

while(<IN>) {
    chomp;
    #print("$_\n");
    @temp = split(/ /,$_);
    #print("$temp[1]\n");
    $temp_out = "placeInstance $temp[1] $temp[3] $temp[4] $temp[2] -fixed";
    print("$temp_out\n");
    print(OUT "$temp_out\n");
}

close IN;
close OUT;

 

Perl-由报表转命令(展讯2015)

标签:while   fixed   div   报表   color   pre   图片   nbsp   代码   

原文地址:https://www.cnblogs.com/wt-seu/p/12594680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!