I have a form that needs to validate for specific first name.
<input type="text" ng-model="info.first_name" ng-pattern="/\bJane\b/">
The issue is that the first name "Jane" needs to be set in the controller.
Is it possible to dynamically set this using ng-pattern?