perl 运算符
时间:2008-05-20 来源:yjc0407
收集到的一些perl运算符的资料
结构 | 结果(相当于) | 是否插值 | 代表 |
q/str/ | 'str' | no | 文字串 |
qq/str / | "str" | yes | 文字串 |
qx/命令/ | `命令` | yes | 命令 |
qw/str / | (str) | no | 单词列表 |
qr/str/ | m/string/ | yes | 模式匹配 |
s/str1/str2 |
|
yes | 模式替换 |
tr/str1/str2/ |
|
no | 模式翻译 |
相关阅读 更多 +