ng-pattern for only hebrew characters

2019-07-19 12:09发布

问题:

I want to use ng-pattern validate my text input field that should accept only Hebrew characters, sometimes the input are ok and sometimes they are being rejected for some reason. (the first one is validate the second letter is not and etc.) example:

<input type="text" class="form-control" name="firstName" ng-model="Join.firstName" id="firstName" aria-describedby="firstNameHelp" maxlength="15" ng-pattern="onlyHebrewPattern" required>

and the solution that given was: scope.onlyHebrewPattern = /^[\u05D0-\u05F3]+$/g;

original post

回答1:

$scope.onlyHebrewPattern = /^[א-ת\s]+$/;