字符集缩写含义: \d:任意数字的字符集[0-9] \w:表示单词字符[A-Za-z0-9_] \s:处理空白[\f\t\n\r] \h:匹配横向空白[\t ] \v:匹配纵向空格 以上简写的大写,表示反义 \R:匹配任何类型的断行 转义字符含义: \n 换行 \r 回车 \t 水平制表符 \f 换页符 \b 退格 \a 系统响铃 \e ESC (ASCⅡ 编码的转义字符) \007 任何八进制的ASCⅡ(此例子007表示系统响铃) \x7f 任何十六进制的ASCⅡ(此例子7f表示删除键的控制代码) \cC 控制符,也就是control键的代码(此例子此表示同时按下ctrl键和C键的返回码) \\ 反斜线 \" 反双引号 \l 将下个字符转为小写 \L 将到\E为止的所有字符转为小写 \u 将下个字符转为大写 \U 将到\E为止的所有字符转为大写 \Q 将到\E为止的非单词(non-word)字符加上反斜线 \E 结束\L、\U、\Q 正则表达式修饰符: c Do not reset search position on a failed match when /g is in effect. g Match globally, i.e., find all occurrences. i Do case-insensitive pattern matching. m Treat string as multiple lines. o Compile pattern only once. s Treat string as single line. x Use extended regular expressions. 参见http://www.ryerson.ca/perl/manual/pod/perlop.html#item_m 标量变量: $$ 当前进程ID $! 相当于linux下的errno |
PERL 转义字符,字符集缩写,修饰符用法总结
最新推荐文章于 2021-04-10 02:12:44 发布