1.substring
包括结束位置
alert(str.substring(1));//bcdef1
2.split
3.search
正则
1.match
获取匹配的项目1
var str='asdf 34 656 cvs33';
var re=/\d+/g;//全局匹配:g——global,+表示一次或者多次
alert(str.match(re));//34,656,33
2.replace
去掉敏感词
3.[] 任意字符,范围
[abc]
例子:o[usb]t——obt、ost、out
[a-z]、[0-9]
例子:id[0-9]——id0、id5
[^a](排除a外的一切)
例子:o[^0-9]t——oat、o?t、o t
组合
[a-z0-9A-Z]
以上所述是小编给大家介绍的web.js.字符串与正则表达式操作,希望对大家有所帮助,如果大家有任何疑问欢迎各我留言,小编会及时回复大家的!
原文链接:https://www.f2er.com/js/39304.html