- 论坛徽章:
- 1
|
如何对文件内容以块儿的形式操作-请高手指点
原帖由 "iamafox" 发表:
1.用array存整個config..
2.在儲存每個VirtualHost的起點,可以一行一行讀取
同時尋找servername fox.com這一行..
3.找到後..回頭找最後一個VirtualHost的起點...開始刪除資料...
直到找到</VirtualH..........
- #!c:\perl\bin\perl.exe
- unless(open(conf, "config.xml")) {
- die("NO this file!\n");
- }
- unless(open(new, "new.xml")) {
- die("CAN'T open new file!\n");
- }
- @file = <conf>;;
- $flag = 1;
- $i = 0;
- $p = 0;
- $del = 0;
- @tmp = ();
- $t = 0;
- while ($i < @file) {
- $line = @file[$i++];
- if ($line == "<VH>;") {
- $flag = 1;
- }
- if ($line == ".com") {
- $del = 1;
- }
- if ($line == "</VH>;") {
- $flag = 0;
- $t = 0;
- }
- if ($flag) {
- @tmp[$t++] = $line;
- }
- elsif (!$del){
- print new $line;
- }
- }
- close(conf);
- close(new);
复制代码
^_^,刚学习两天。不知道写的对不对,也没测试呢。可以吧需要的地方换成模式匹配。 |
|