I have an array object ... An array can contain spaces, how can I create an ANgular filter to remove spaces to determine the length of the array?
$scope.myData = { ["1", "1", "4", "4", "N", "4", "6", "8", "", "", "", "", "", "", "", "", "", "", ], ["2", "2", "4", "6", "0", "6", "5", "4", "2", "", "8", "", "", "", "", "", "", "", ], ["2", "3", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ], ["3", "F", "D", "3", "5", "1", "D", "5", "", "", "", "", "", "", "", "", "", "", ], ["1", "V", "4", "4", "3", "2", "1", "1", "4", "", "", "", "", "", "", "", "", "", ], ["4", "5", "8", "6", "4", "2", "8", "7", "1", "1", "2", "", "", "", "", "", "", "", ], ["4", "4", "R", "F", "D", "8", "4", "2", "4", "8", "7", "4", "8", "", "", "", "", "", ], ["D", "5", "F", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", ], ["1", "4", "1", "3", "4", "B", "D", "G", "", "", "", "", "", "", "", "", "", "", ] }
HTML:
<div ng-repeat="data in myData"> <div ng-show="(data | myFilter).length > 10"> Show if length greater than 10 </div> <div ng-show="(data | myFilter).length > 15"> Show if length greater than 15 </div> </div>
thanks