- 论坛徽章:
- 0
|
本帖最后由 百分百好牛 于 2011-05-06 16:41 编辑
不好意思,我的平台是windows, 不是unix.
windows 2008, perl version 是 5.1
假设文件 output.txt的内容如下:
====================
the following are the list of products:
airplan
jet
bullet
gun
the following are the list of money:
RMB
Dollar
Riyuan
====================
现在我想把两个list的title和内容,分别放到两个不同的文件中去,比如:
the following are the list of products:
shoe
table
bug
放到文件 product.txt里面去。同样的,另外一个放到 money.txt里面去。但我只知道用//可以查找,但接下怎么把这块内容截出来,我就不会了。向大侠们请教。
open FILE, "< output.txt";
while(<FILE>)
{
if (/the following are the list of products:/)
{
}
if (/the following are the list of money:/)
{
}
} |
|