js 判断字符串是否包含了指定的内容,并封装,方便复用
代码
export function doesItInclude(string, stringBody) {
var str = new RegExp(string);
return str.test(stringBody)
}
实例
判断字符串是否包含了http
doesItInclude('http', 'https://www.wanjunshijie.com')
js 判断字符串是否包含了指定的内容,并封装,方便复用
export function doesItInclude(string, stringBody) {
var str = new RegExp(string);
return str.test(stringBody)
}
判断字符串是否包含了http
doesItInclude('http', 'https://www.wanjunshijie.com')