什么是禁用的适当ng模式
\/:*?"<>|
我尝试了很多不同的方法。
答案 0 :(得分:0)
我做了类似的事情:
const re = new RegExp(/[\/*\\*:*\?*"*<*>*(\|*)]/);
console.log(re.test( 'abcd"ef')); //true
修改1:为'/'
添加了验证答案 1 :(得分:0)
结束这样做
$scope.fileNamePattern = /^[a-zA-Z0-9;`¬!£$%^&()\-_+={}\[\]@#~,.' ]+$/;