您的位置:首页 > 其它

正则表达式加注释用法

2011-08-31 11:13 197 查看
regex_1:\d{4}-\d{2}

test文本:2011-08

结果:全部可以命中!

加注释后:

regex_2:

(?x)\d{4}#year:comment

-

\d{2}#month:comment

都可以命中!

分析:

使用了修饰符:(?x)--->使得可以宽松排列

使用了注释符:#--->后加注释内容

Match the remainder of the regex with the options: free-spacing (x) «(?x)»

Match a single digit 0..9 «\d{4}»

Exactly 4 times «{4}»

Comment: #year:comment «#year:comment»

Match the character “-” literally «-»

Match a single digit 0..9 «\d{2}»

Exactly 2 times «{2}»

Comment: #month:comment «#month:comment»
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: