I have list of states and I have added search filter on name of states. I have array like this:
stateList : [{name: 'abc', area:500},{name: '!def', area:500}]
I have <li> with ng-repeat="state in stateList | filter:{name:searchText}"
Search text box with ng-model="searchText"
Search is working in normal scenario but when I search !(exclamation mark). It is not giving any result. It should give state with name '!def'