I have been searching this forum and others for angularjs pattern that will validate html input with ONLy single digit.
any number between 0-9 but should not accept any character including.
This is what i have done so far, but still does not work properly.
ng-pattern="/[0-9]{1}/"
ng-pattern="/[0-9{1}]/"
ng-pattern="/\d{1}/"