Adleron
Adleron

Reputation: 83

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

Upvotes: 2

Views: 1853

Answers (1)

bresleveloper
bresleveloper

Reputation: 6070

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

Upvotes: 4

Related Questions