私はオンラインで perl の課題を練習していて、Sandbox でこれを見つけました。
-> を先頭に、<- を各行の末尾に追加する perl スクリプトの書き方。次に、元の入力の行数、最長行の長さ、および合計バイト数を報告します。たとえば、入力ファイル
//Input File
Hi there.
This is Fred.
Who are you?
出力を生成する必要があります。
//Output File
->Hi there.<-
->This is Fred.<-
->Who are you?<-
3 lines, longest 13 characters, 37 bytes total.
私は追加することができます -> このコードで行の先頭にのみ:
#!/usr/bin/perl
use strict;
use warnings;
open(FH,"input.pl") or die "cannot open file: $!\n"; #Input File
open(NEWFH,"> output.pl") or die "cannot write\n"; #Output File
print "opened file\n";
while(<FH>){
print NEWFH "-> $_ ";
}
close FH;
close NEWFH;
行末に「->」を追加するのを手伝ってもらえますか