Tuesday, December 25, 2012

next 문

다음 코드에서 comment 를 해제하면 공백인 라인은 빼고 프린트해준다.
 $MYFILE = "/Users/testText.txt";  
 open(MYFILE);  
 while (<MYFILE>) {  
      chomp();  
 #     next if(/^$/);  
      print();  
      print("/");  
 }  
 close(MYFILE);  

No comments:

Post a Comment