私はPerlプログラミングをしています。段落を読んで、各文を行として出力する必要があります。
誰でもそれを行う方法を知っていますか?
以下は私のコードです:
#! /C:/Perl64/bin/perl.exe
use utf8;
if (! open(INPUT, '< text1.txt')){
die "cannot open input file: $!";
}
if (! open(OUTPUT, '> output.txt')){
die "cannot open input file: $!";
}
select OUTPUT;
while (<INPUT>){
print "$_";
}
close INPUT;
close OUTPUT;
select STDOUT;