正则表达式 – 关于正则表达式中的问号

我看到一个正则表达式(?i).那么当我们把一个问号放在一个人物面前的意思是什么?
一般来说,这并不意味着什么,甚至可能导致错误(如果问号不符合有效的字符).但是有一些字符确实有效果,即如果这个字符也用作 modifier.

regular-expressions.info说到这个特殊的语法:

Modern regex flavors allow you to apply modifiers to only part of the regular expression. If you insert the modifier (?ism) in the middle of the regex,the modifier only applies to the part of the regex to the right of the modifier. You can turn off modes by preceding them with a minus sign. All modes after the minus sign will be turned off. E.g. (?i-sm) turns on case insensitivity,and turns off both single-line mode and multi-line mode.

Not all regex flavors support this. JavaScript and Python apply all mode modifiers to the entire regular expression. They don’t support the (?-ismx) syntax,since turning off an option is pointless when mode modifiers apply to the whole regular expressions. All options are off by default.

You can quickly test how the regex flavor you’re using handles mode modifiers. The regex (?i)te(?-i)st should match test and TEst,but not teST or TEST.

?我意味着这些字符之后的所有内容都应该与大小写不匹配.

另请注意,正如文中所述,并不是所有的正则表达式都支持这种语法.

相关文章

jquery.validate使用攻略(表单校验) 目录 jquery.validate...
/\s+/g和/\s/g的区别 正则表达式/\s+/g...
自整理几个jquery.Validate验证正则: 1. 只能输入数字和字母...
this.optional(element)的用法 this.optional(element)是jqu...
jQuery.validate 表单动态验证 实际上jQuery.validate提供了...
自定义验证之这能输入数字(包括小数 负数 ) <script ...