正则表达式使用案例-OCP试题

92. Evaluate the following expression using meta. character for regular expression:
'[^Ale|ax.r$]'
Which two matches would be returned by this expression? (Choose two.)
A. Alex
B. Alax
C. Alxer
D. Alaxendar
E. Alexender
Answer: DE
       
解析:题目的意思是哪两个选项能和'[^Ale|ax.r$]'匹配

'[^Ale|ax.r$]'中^表示只匹配不在集合{'A','l','e','|','a','x','.','r','$'}中的字符, 此处的'|'、'.'、'$'只是表示普通的字符,而非匹配符



select regexp_instr('Alex','[^Ale|ax.r$]')          from dual;
REGEXP_INSTR('ALEX','[^ALE|AX.R$]')
-----------------------------------
0


select regexp_instr('Alax','[^Ale|ax.r$]')          from dual;
REGEXP_INSTR('ALAX','[^ALE|AX.R$]')
-----------------------------------
0


select regexp_instr('Alxer','[^Ale|ax.r$]')        from dual;
REGEXP_INSTR('ALXER','[^ALE|AX.R$]')
------------------------------------
0


select regexp_instr('Alaxendar','[^Ale|ax.r$]') from dual;
REGEXP_INSTR('ALAXENDAR','[^ALE|AX.R$]')
----------------------------------------
6


select regexp_instr('Alexender','[^Ale|ax.r$]') from dual;
REGEXP_INSTR('ALEXENDER','[^ALE|AX.R$]')
----------------------------------------
6


因此可见答案是DE

转自:http://www.itpub.net/forum.php?mod=viewthread&tid=1327778
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值