您的位置:首页 > 其它

Match One of Many Characters (匹配多个字符中的一个)

2014-03-27 09:57 302 查看
1. 需求及方法

1) Calendar with misspellings

c[ae]l[ae]nd[ae]r

2) Hexadecimal character

[a-fA-F0-9]

3) Non-hexadecimal character

[^a-fA-F0-9]

2. 小结

1). Shorthand character

\d matches a single digit

\D matches any character that is not a digit

\w matches a single word character

\W matches a character that is not part of such a propellerhead word

\s matches any whitespace character (including spaces, tabs, line breaks)

\S matches any character not matched by <\s>

2). Case insensitivity

(?i)

eg. (?i)[A-F0-9]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐