대소문자 변환
{{ x1 }} {{ x2 }} {{ x3 }} {{ x4 }} var app = angular.module('App', []); app.controller('Ctrl', function($scope) { $scope.x1 = "ABcd"; $scope.x2 = angular.lowercase($scope.x1); $scope.x3 = "cdEF"; $scope.x4 = angular.uppercase($scope.x3); }); 숫자 문자 체크
{{ x1 }} {{ x2 }} {{ x3 }} {{ x4 }} var app = angular.module('...
원문 링크 : Angular.js API