摘要: 使用new RegExp('规则','修饰符(匹配模式)')或者/规则/修饰符(匹配模式)来创建一个正则表达式 const reg = /box/; // 检查一个字符串中是否包含字符串'box' const str = 'big box'; 正则的方法 test方法 正则表达式.test(字符串) 阅读全文
posted @ 2020-07-14 15:43 demo_you 阅读(217) 评论(0) 推荐(0) 编辑