摘要: 正则表达式中,需要转义的字符: * . ? + $ ^ [ ] ( ) { } | \ / let reg = /\d+/g let str = 'ad/23/dfww/454/6' 1. reg.test(str) > true 如果字符串中存在正则表达式的匹配结果则返回true否则返回false 阅读全文
posted @ 2018-01-14 15:20 s_qiu 阅读(2540) 评论(0) 推荐(0) 编辑