- 论坛徽章:
- 1
|
文件存储的格式是:- 广州广佛城巴1线
- 去程:罗冲围客运站总站-金沙洲路-洲村市场-草场-丰岗-流潮路口-沿江公园-里水车站-岗头村(里水镇)-宏岗市场-白岗市场-南海和顺车站总站(12站)
- 回程:南海和顺车站总站-白岗市场-宏岗市场-岗头村(里水镇)-里水车站-沿江公园-流潮路口-丰岗-草场-洲村市场-金沙洲路-罗冲围客运站总站(12站)
复制代码 代码如下:- #!/usr/bin/perl -w
- $source = "./test.txt";
- open(INFILE,"<",$source)
- or die("无法打开$source:$!\n");
- while(<INFILE>)
- {
- @zd = ();
- chomp();
- if(/去程|回程|单向行驶/)
- {
- ($fx,$zd_all) = split(":",$_);
- @zd = split("-",$zd_all);
- if($fx eq "去程")
- {
- $fx = "下行";
- }
- elsif($fx eq "回程")
- {
- $fx = "上行";
- }
- }
- else
- {
- $lx = $_;
- }
- foreach (@zd)
- {
- print $lx,":",$_,":",$fx,"\n";
- }
- }
- close(INFILE);
复制代码 输出到文件出现- 广州广佛城巴1线:南?下行
- 广州广佛城巴1线:南?上行
复制代码 预计输出是:- 广州广佛城巴1线:南海和顺车站总站(12站):下行
- 广州广佛城巴1线:南海和顺车站总站(12站):上行
复制代码 现在用如下脚本,就没有出现这样的情况了- @rem = '--*-Perl-*--
- @echo off
- if "%OS%" == "Windows_NT" goto WinNT
- perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9
- goto endofperl
- :WinNT
- if not exist Bus-station-list mkdir Bus-station-list
- perl -x -S %0 %*
- if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl
- if %errorlevel% == 9009 echo You do not have Perl in your PATH.
- if errorlevel 1 goto script_failed_so_exit_with_non_zero_val 2>nul
- goto endofperl
- @rem ';
- #!/usr/bin/perl -w
- #line 15
- use Encode;
- open(FILE,"<","dir.txt") or die("err:$!");
- while(<FILE>)
- {
- chomp($filename = $_);
- open(FILE1,"<","./finish/$filename") or die("err:$!\n");
- open(FILE2,">","./Bus-station-list/$filename") or die("err:$!\n");
- while(<FILE1>)
- {
- chomp();
- $len = index($_,":");
- if($len == -1)
- {
- $lx = $_;
- }
- elsif($len == 4 or $len == 8)
- {
- $tmp_fx = substr($_,0,$len);
- $tmp_zd_all = substr($_,$len+2);
- $count = 1;
- while(($num = index($tmp_zd_all,"-")) != -1)
- {
- $zm = substr($tmp_zd_all,0,$num);
- print FILE2 $lx,",",$zm,",","$tmp_fx",",","$count",",",",","\n";
- $tmp_zd_all = substr($tmp_zd_all,$num+1);
- $count++;
- }
-
- $tmp_zd_all =~ s/\((\d)+站\)//;
- print FILE2 $lx,",",$tmp_zd_all,",","$tmp_fx",",","$count",",",",","\n";
- }
- else
- {
- print "err:\n";
- }
- }
- close(FILE1);
- close(FILE2);
- }
- close(FILE);
- __END__
- :endofperl
复制代码 |
|