标签:blog class code string int 文件 cti line 数据 com table
1. 查看当前所用Perl版本号
1 |
perl –v |
2. 一个简单的Perl程序
1
2
3 |
print
"hello world" ; #这是注释 |
执行它:
1 |
Perl helloWorld.txt |
文件名后缀可以是pl可以是txt
3. 一个稍微复杂点的Perl程序
1
2
3
4
5
6 |
@line = `perldoc -u -f atan2 `; //运行一个外部命令,通过反引号来调用,将输出结果一行行依次存储在 @line 这个数组变量中 foreach ( @line ){ //启动一个循环更新内存中的数据并输出 s/\w<([^>]+)>/\U$1/g; print ; } |
Perl学习笔记(一)--简介,码迷,mamicode.com
标签:blog class code string int 文件 cti line 数据 com table
原文地址:http://www.cnblogs.com/Hebe/p/3701414.html