如何在AngularJS中验证这些特殊字符?

时间:2017-11-21 10:55:02

标签: html angularjs ng-pattern

什么是禁用的适当ng模式

\/:*?"<>|

我尝试了很多不同的方法。

2 个答案:

答案 0 :(得分:0)

我做了类似的事情:

const re = new RegExp(/[\/*\\*:*\?*"*<*>*(\|*)]/);

console.log(re.test( 'abcd"ef')); //true

修改1:'/'

添加了验证

答案 1 :(得分:0)

结束这样做

$scope.fileNamePattern = /^[a-zA-Z0-9;`¬!£$%^&()\-_+={}\[\]@#~,.' ]+$/;