码迷,mamicode.com
首页 > Web开发 > 详细

备忘:js正则表达式中的元字符

时间:2016-05-01 13:29:21      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

Predefined term Matches
\t Horizontal tab
\b Backspace
\v Vertical tab
\f Form feed
\r Carriage return
\n Newline
\cA : \cZ Control characters
\x0000 : \xFFFF Unicode hexadecimal
\x00 : \xFF ASCII hexadecimal
. Any character, except for newline (\n)
\d Any decimal digit; equivalent to [0-9]
\D Any character but a decimal digit; equivalent to [^0-9]
\w Any alphanumeric character including underscore; equivalent to [A-Za-z0-9_]
\W Any character but alphanumeric and underscore characters; equivalent to [^A-Za-z0-9_]
\s Any whitespace character (space, tab, form feed, and so on)
\S Any character but a whitespace character
\b A word boundary
\B Not a word boundary (inside a word)

备忘:js正则表达式中的元字符

标签:

原文地址:http://www.cnblogs.com/undefined000/p/5450313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!