Search code examples
angularjsregexhebrewng-patternangularjs-ng-pattern

ng-pattern for only hebrew characters


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


Solution

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