I have two images , based on input regex pattern i want to display one image at a time.
My code is
<input type="password" ng-model="password" placeholder="Enter Password"/>
<img src="../close.png" ng-show="password != [a-z]"/>
<img src="../right.png" ng-show="password == [a-z]"/>
What will be solution for this kind of feature.