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

Posted wt-seu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Perl-由报表转命令(展讯2015)相关的知识,希望对你有一定的参考价值。

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("$_
");
    @temp = split(/ /,$_);
    #print("$temp[1]
");
    $temp_out = "placeInstance $temp[1] $temp[3] $temp[4] $temp[2] -fixed";
    print("$temp_out
");
    print(OUT "$temp_out
");
}

close IN;
close OUT;

 

以上是关于Perl-由报表转命令(展讯2015)的主要内容,如果未能解决你的问题,请参考以下文章

Perl_实用报表提取语言

新加坡展讯Zhang Linhai Soloexhibition "SANDBOX SERIES"

展讯通信:文章"紫光收购后展讯困难重重”失实(展讯的成就确实很高)

如何有条件地将 C 代码片段编译到我的 Perl 模块?

Perl语言入门

干货小卖铺|Perl语言与生物信息分析入门