Chinaunix首页 | 论坛 | 博客
  • 博客访问: 579240
  • 博文数量: 158
  • 博客积分: 2696
  • 博客等级: 少校
  • 技术积分: 1668
  • 用 户 组: 普通用户
  • 注册时间: 2007-06-10 00:49
个人简介

life?is?short?,?play?more!

文章分类

全部博文(158)

文章存档

2021年(1)

2013年(10)

2012年(4)

2011年(11)

2010年(27)

2009年(28)

2008年(52)

2007年(25)

我的朋友

分类:

2009-09-17 23:24:56

@var= 读取文件内容,会将空行过滤掉。
 
1. 
if (open(FILE,"c:/users/hp/desktop/test.xml") )
{
print "the contents list below\n";
>;
#print @contents[1];
while()
{
chmop;
print "$_\n";
}
close(FILE);
}
 
 
打印的结果为:
the contents list below

2.

if (open(FILE,"c:/users/hp/desktop/test.xml") )
{
print "the contents list below\n";
@contents=;
print @contents;
close(FILE);
}
 
打印结果:
the contents list below

 

 

 
阅读(1343) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~