javaScript-正则表达式 发表于 2021-03-30 分类于 JavaScript javaScript正则表达式 正则表达式的创建12345// 方式一let pattern = /test/;// 方式二,var pattern = new RegExp("test");