正则表达式加注释用法

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»


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值