本教程版权归小圆和饥人谷所有,转载须说明来源
问答
\d
,\w
,\s
,[a-zA-Z0-9]
,\b
,.
,*
,+
,?
,x{3}
,^$
分别是什么?
\d
:数字字符
\w
:单词字符,字母、数字下划线
\s
:任何不可见字符,包括空格、制表符、换页符
[a-zA-Z0-9]
:从a到z,从A到Z,从0到9,即所有的字母和数组\b
:单词边界
.
: 除了换行和回车之外的任意字符
*
:出现零次或多次(任意次)
+
:出现一次或多次(至少一次)
?
:出现零次或一次
x{3}
:包含3个x的序列的字符串
^$
:开头为$的字符串贪婪模式和非贪婪模式指什么?
贪婪模式:指{n,m}、?、+、*这些在默认情况下都是尽最大可能匹配,直到下一个字符不满足匹配规则为止
非贪婪模式:与贪婪模式相反,即尽可能少地匹配,在正则表达式的量词后面添加个“?”即可
代码题
- 写一个函数
trim(str)
,去除字符串两边的空白字符
function trim(str) {
var patt = /^\s+|\s+$/g;
return str.replace(patt,'');
}
- 使用实现
addClass(el, cls)
、hasClass(el, cls)
、removeClass(el,cls)
,使用正则
ps: 视频里问题纠正
提示: el为dom元素,cls为操作的class, el.className获取el元素的class
function hasClass(el, cls) {
var reg = new RegExp(('(^\\s|)' + cls + '(\\b|$)'), 'g');
return reg.test(el.classname);
}
function addClass(el,cls) {
var reg = new RegExp(('(^\\s|)' + cls + '(\\b|$)'), 'g');
if (!reg.test(el.classname)) {
return el.classname += ' ' + cls;
}
}
function removeClass(el,cls) {
var reg = new RegExp('(^\\s|)' + cls + '(\\b|$)', 'g');
if(reg.test(el.classname)) {
return el.classname.replace(cls,'');
}
}
- 写一个函数isEmail(str),判断用户输入的是不是邮箱
function isEmail(str) {
var patt = /\S+@\S+\.\S+/;
return patt.test(str);
}
- 写一个函数isPhoneNum(str),判断用户输入的是不是手机号
function isPhoneNum(str) {
var patt = /^1[0-9]\d{9}$/g;
return patt.test(str);
}
- 写一个函数isValidUsername(str),判断用户输入的是不是合法的用户名(长度6-20个字符,只能包括字母、数字、下划线)
function isValidUsername(str) {
var patt = /^\w{6,20}$/;
return patt.test(str);
}
- 写一个函数isValidPassword(str), 判断用户输入的是不是合法密码(长度6-20个字符,只包括大写字母、小写字母、数字、下划线,且至少包括两种)
function isValidPassword(str) {
var len = /^\w{6,20}$/;
if (!len.test(str)) {
return false;
}
var patt = /(^[A-Z]+$)|(^[a-z]+$)|(^[0-9]+$)|(^_+$])/;
if (patt.test(str)) {
return false;
}
var other = /\W/;
if (other.test(str)) {
return false;
}
}
- 写一个正则表达式,得到如下字符串里所有的颜色(#121212)
var re = /*正则...*/
var subj = "color: #121212; background-color: #AA00ef; width: 12px; bad-colors: f#fddee #fd2 "
alert( subj.match(re) ) // #121212,#AA00ef
回答:
var re = /#[A-Za-z0-9]{6}/g;
- 下面代码输出什么? 为什么? 改写代码,让其输出
hunger
,world
.
var str = 'hello "hunger" , hello "world"';
var pat = /".*"/g;
str.match(pat);
输出:
[""hunger" , hello "world""]
原因:/".*"/g
表示匹配在全局环境下出现零次或多次的任意字符,由于贪婪模式会尽可能多的匹配,所以出现了两次的hello
也被匹配。
改写:
var str = 'hello "hunger" , hello "world"';
var pat = /".*?"/g;
str.match(pat); //[""hunger"", ""world""]
- 补全如下正则表达式,输出字符串中的注释内容. (可尝试使用贪婪模式和非贪婪模式两种方法)
str = '.. <!-- My -- comment \n test --> .. <!----> .. '
re = /.. your regexp ../
str.match(re) // '<!-- My -- comment \n test -->', '<!---->'
贪婪模式:
str = '.. <!-- My -- comment \n test --> .. <!----> .. '
re = /<!--[^>]*-->/g;
str.match(re) // '<!-- My -- comment \n test -->', '<!---->'
非贪婪模式:
str = '.. <!-- My -- comment \n test --> .. <!----> .. '
re = /<!--[\W\w]*?-->/g;
str.match(re) // '<!-- My -- comment \n test -->', '<!---->'
- 补全如下正则表达式
var re = /* your regexp */
var str = '<> <a href="/"> <input type="radio" checked> <b>'
str.match(re) // '<a href="/">', '<input type="radio" checked>', '<b>'
回答:
var re = /<[^>]+>/g;
var str = '<> <a href="/"> <input type="radio" checked> <b>'
str.match(re) // '<a href="/">', '<input type="radio" checked>', '<b>'