Perl best practice
字符串引用
- 变量内插
- “this is the $var”
- qq(this is the $var)
- 字符串直接量
- ‘this is the string’
- q(this is the string)
- 变量内插包含单/双引号
- “this double quote \” and the $var“
- qq(this double quote “ and the $var)
- 字符串直接量含单引号
- “this single quote ‘ and string”
- q(this single quote ‘ and string)
- 空字符串
- ‘’
- q()
- qq()
- 单个空格字符串
- ‘ ’
- “ ”
- q( )
- qq( )
- tab
- ‘ ’
- “\t”
- qq(\t)
perl长数字划分
- 5.8版本之前分隔符(_)只能放在三个整数之前
- 5.8版本后分隔符(_)可以放在任意数字之间
perl怎样创建heredoc
>>’HEREDOC’; >和标识符之间没有空格
第一个标识符HEREDOC;$,第二个标识符^HEREDOC$(懂我意思吧)
‘HEREDOC’:单引号标记的标识符变量不能转义
“HEREDOC”:双引号标记的标识符变量可以转义
heredoc内容必须靠左
my $message = <<‘HEREDOC’;
...
HEREDOC
未修饰字(bareword)
胖逗号 =>
创建key-value list时需要使用胖逗号(fat comma),胖逗号会移除key字符串必须加引号的限制。
my %hash = (
sq => "chuang",
mw => "chuang",
xy => "yummy"
);
my %hash = (
'sq','chuang',
'mw','chuang',
'xy','yummy'
);
运算符及优先级
内置变量
perl special variable reference
切片/列表/数组
控制结构
# if block
if() {
...
}
elsif(){
...
}
else {
...
}
# while block
while(){
...
}
continue{
...
}
# until block
until(){
...
}
continue{
...
}
# for block
for(initial;judge;action){
...
}
# foreach block
foreach my $var (list){
...
}